[asterisk-commits] qwell: branch 1.4 r106842 - /branches/1.4/main/editline/Makefile.in
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 7 16:14:45 CST 2008
Author: qwell
Date: Fri Mar 7 16:14:45 2008
New Revision: 106842
URL: http://svn.digium.com/view/asterisk?view=rev&rev=106842
Log:
Fix hardcoded grep in editline, were GNU grep is required.
(closes issue #12124)
Reported by: dmartin
Modified:
branches/1.4/main/editline/Makefile.in
Modified: branches/1.4/main/editline/Makefile.in
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/editline/Makefile.in?view=diff&rev=106842&r1=106841&r2=106842
==============================================================================
--- branches/1.4/main/editline/Makefile.in (original)
+++ branches/1.4/main/editline/Makefile.in Fri Mar 7 16:14:45 2008
@@ -4,7 +4,7 @@
OSTYPE=$(shell uname -s)
define cyg_subst_sys
- if uname -s | grep -qi cygwin; then \
+ if uname -s | ${GREP} -qi cygwin; then \
cat $@ | sed -e s/"sys\.h"/"config.h"/g > $@.copy; \
mv --force $@.copy $@; \
fi
More information about the asterisk-commits
mailing list