mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user