diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-02-05 09:21:56 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-02-05 09:21:56 +0000 |
commit | be6b28efc0b45f711ba0997b0cdce3d2a06b4f63 (patch) | |
tree | 17068a4728349e43a2bbe6e2f5a6a2d8f1bc9d9e /common | |
parent | fe284a30cb1648e1447508f2621315b522520ca4 (diff) | |
download | tigervnc-be6b28efc0b45f711ba0997b0cdce3d2a06b4f63.tar.gz tigervnc-be6b28efc0b45f711ba0997b0cdce3d2a06b4f63.zip |
Oops. Use EGREP instead of GREP, because GREP is not available in earlier versions of autotools
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3962 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common')
-rw-r--r-- | common/jpeg/simd/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/jpeg/simd/Makefile.am b/common/jpeg/simd/Makefile.am index 0ccc9380..1df61431 100644 --- a/common/jpeg/simd/Makefile.am +++ b/common/jpeg/simd/Makefile.am @@ -53,5 +53,5 @@ endif $(LIBTOOL) --mode=compile --tag NASM ./nasm_lt.sh $(NASM) $(NAFLAGS) $< -o $@ jsimdcfg.inc: jsimdcfg.inc.h ../jpeglib.h ../jconfig.h ../jmorecfg.h - $(CPP) jsimdcfg.inc.h | $(GREP) ^[\;%] | sed 's%_cpp_protection_%%' > $@ + $(CPP) jsimdcfg.inc.h | $(EGREP) ^[\;%] | sed 's%_cpp_protection_%%' > $@ |