From 44a25707fd19e5c584946efd0457110062f841a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Thu, 8 Apr 1999 19:51:16 +0000 Subject: [PATCH] Avoid error message about missing gcc. Submitted by: Niels Poppe --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1