summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2006-11-09 13:21:55 +0100
committerAlan Coopersmith <alan.coopersmith@sun.com>2006-11-09 14:48:03 -0800
commit37e89cbf2bc3b6266fa47ff1f956d173658bb9a5 (patch)
treec20e9abe7965e8f676b223e7e0354bb6d1a9289f
parent6fc58644148039261c21f699a14c839356f501ed (diff)
Fix grep pattern in Makefile.am
Don't escape | in basic regex mode as it breaks build with GNU grep.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 952ec8c..83f4b58 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -63,7 +63,7 @@ sessreg.$(APP_MAN_SUFFIX): filenames.sed
filenames.sed: filenames.sed.c
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- $(CPPFLAGS) $(srcdir)/filenames.sed.c | grep 's\|__' > $@
+ $(CPPFLAGS) $(srcdir)/filenames.sed.c | grep 's|__' > $@
if LINT
ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \