aboutsummaryrefslogtreecommitdiffstats
path: root/main/editline/Makefile.in
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-27 21:25:35 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-27 21:25:35 +0000
commit88dd4873548cab42ef0e354188f2b3d07fcb5783 (patch)
tree78fb3d0601985d48bf9a7ed8118f9fb452313417 /main/editline/Makefile.in
parent2500bdca8c3a84532a1a299797b6c0f74d33e4d0 (diff)
Merged revisions 259439 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r259439 | qwell | 2010-04-27 16:13:01 -0500 (Tue, 27 Apr 2010) | 5 lines Add gar to the check for AR for those silly OSes (Solaris) that don't have ar. autoconf2.13 couldn't handle AC_PROG_GREP, so I removed it. This is fine, since we don't need to use anything that the configure script doesn't. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@259486 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/editline/Makefile.in')
-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 5bb097f48..112b68b64 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 -i cygwin > /dev/null; then \
cat $@ | sed -e s/"sys\.h"/"config.h"/g > $@.copy; \
mv --force $@.copy $@; \
fi