[asterisk-commits] qwell: trunk r106843 - in /trunk: ./ main/editline/Makefile.in

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Mar 7 16:15:20 CST 2008


Author: qwell
Date: Fri Mar  7 16:15:20 2008
New Revision: 106843

URL: http://svn.digium.com/view/asterisk?view=rev&rev=106843
Log:
Merged revisions 106842 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r106842 | qwell | 2008-03-07 16:14:45 -0600 (Fri, 07 Mar 2008) | 5 lines

Fix hardcoded grep in editline, were GNU grep is required.

(closes issue #12124)
Reported by: dmartin

........

Modified:
    trunk/   (props changed)
    trunk/main/editline/Makefile.in

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/editline/Makefile.in
URL: http://svn.digium.com/view/asterisk/trunk/main/editline/Makefile.in?view=diff&rev=106843&r1=106842&r2=106843
==============================================================================
--- trunk/main/editline/Makefile.in (original)
+++ trunk/main/editline/Makefile.in Fri Mar  7 16:15:20 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