]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use -q option with egrep, Solaris doesn't have it (bug 517145)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Feb 2002 20:31:55 +0000 (20:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Feb 2002 20:31:55 +0000 (20:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure
configure.in

index 0e99b98620daa5ec83dfb30d95117bf9e7aa4977..6a09a416a49c4e55f93ac28232de957b90d241a7 100755 (executable)
--- a/configure
+++ b/configure
@@ -9299,7 +9299,7 @@ if eval "test \"`echo '$''{'wx_cv_prog_makeisgnu'+set}'`\" = set"; then
 else
   
     if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
-            egrep -qs GNU); then
+            egrep qs GNU > /dev/null); then
         wx_cv_prog_makeisgnu="yes"
     else
         wx_cv_prog_makeisgnu="no"
index 252f8a5161b0555f8e8d7ac197420eeaf758cd49..92404961ea870ebc0d0daea6dcfda937c3d0b39f 100644 (file)
@@ -1223,7 +1223,7 @@ dnl does make support "-include" (only GNU make does AFAIK)?
 AC_CACHE_CHECK([if make is GNU make], wx_cv_prog_makeisgnu,
 [
     if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
-            egrep -qs GNU); then
+            egrep qs GNU > /dev/null); then
         wx_cv_prog_makeisgnu="yes"
     else
         wx_cv_prog_makeisgnu="no"