diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-08-08 18:01:47 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-08-15 14:22:56 +0200 |
commit | af0639697455b54e2ade8556867a15893197ffe2 (patch) | |
tree | 0537394d7d235391337fc7449df45a78c0930fb7 | |
parent | 3cc745c62f872df8b88068907ab7a646d827a122 (diff) | |
download | glibc-af0639697455b54e2ade8556867a15893197ffe2.tar.gz glibc-af0639697455b54e2ade8556867a15893197ffe2.tar.xz glibc-af0639697455b54e2ade8556867a15893197ffe2.zip |
Fix pattern when collecting getconf.speclist
-rw-r--r-- | posix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index 66819321f8..e668ff4404 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -327,6 +327,6 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ $(objpfx)getconf.speclist: getconf.speclist.h $(CC) -E $(CFLAGS) $(CPPFLAGS) $< \ - | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ > $@.new mv -f $@.new $@ |