From: Ulf Möller Date: Thu, 8 Apr 1999 19:51:16 +0000 (+0000) Subject: Avoid error message about missing gcc. X-Git-Tag: OpenSSL_0_9_3beta1~366 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=44a25707fd19e5c584946efd0457110062f841a7 Avoid error message about missing gcc. Submitted by: Niels Poppe --- diff --git a/config b/config index 78aac51b50..2427c4a1aa 100755 --- a/config +++ b/config @@ -284,7 +284,7 @@ done # figure out if gcc is available and if so we use it otherwise # we fallback to whatever cc does on the system -GCCVER=`gcc -v 2>&1` +GCCVER=`(gcc -v) 2>&1` if [ $? = "0" ]; then CC=gcc else