From a664d7385d97a2e4743d448aa3dddd911190f472 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 19 Mar 2009 17:15:01 +0000 Subject: [PATCH] Work around Solaris's grep not supporting -q --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4067335..f7f6c09 100644 --- a/configure.ac +++ b/configure.ac @@ -1299,8 +1299,9 @@ AC_OUTPUT # $(eval ...) inside conditionals causes errors # with make 3.80, so warn the user if it looks like they're about to # try to use it. +# We would use "grep -q" here, but Solaris's grep doesn't support it. checkMake380() { - if $1 --version 2>&1 | head -1 | grep -q 'GNU Make 3\.80' + if $1 --version 2>&1 | head -1 | grep 'GNU Make 3\.80' > /dev/null then echo echo "WARNING: It looks like \"$1\" is GNU make 3.80." -- 1.7.10.4