mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 16:50:14 +00:00
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 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@106843 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