summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-08-08 18:01:47 +0200
committerAndreas Schwab <schwab@redhat.com>2011-08-15 14:22:56 +0200
commitaf0639697455b54e2ade8556867a15893197ffe2 (patch)
tree0537394d7d235391337fc7449df45a78c0930fb7
parent3cc745c62f872df8b88068907ab7a646d827a122 (diff)
downloadglibc-af0639697455b54e2ade8556867a15893197ffe2.tar.gz
Fix pattern when collecting getconf.speclist
-rw-r--r--posix/Makefile2
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 $@