From 59c962bf54667cab735353b2ec3b7a2438464f22 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 13 Feb 2002 20:31:55 +0000 Subject: [PATCH] don't use -q option with egrep, Solaris doesn't have it (bug 517145) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 0e99b98620..6a09a416a4 100755 --- 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" diff --git a/configure.in b/configure.in index 252f8a5161..92404961ea 100644 --- a/configure.in +++ b/configure.in @@ -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" -- 2.45.2