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

(closes issue #12124)
Reported by: dmartin


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@106842 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker
2008-03-07 22:14:45 +00:00
parent 28c66694d3
commit 06ba2df183

View File

@@ -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