aboutsummaryrefslogtreecommitdiffstats
path: root/main/editline
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-07 22:14:45 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-07 22:14:45 +0000
commitc3cfe129e563262b45c731c1787e0e56191ac55a (patch)
tree618076d188fec1d03e66f4da788f7bd2e160cf20 /main/editline
parentf751ccb33d81f6b544d1e33efd38bdd948915514 (diff)
Fix hardcoded grep in editline, were GNU grep is required.
(closes issue #12124) Reported by: dmartin git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@106842 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/editline')
-rw-r--r--main/editline/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/editline/Makefile.in b/main/editline/Makefile.in
index f17cfd43a..47fbb8d09 100644
--- a/main/editline/Makefile.in
+++ b/main/editline/Makefile.in
@@ -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