summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-08 19:51:16 +0000
committerUlf Möller <ulf@openssl.org>1999-04-08 19:51:16 +0000
commit44a25707fd19e5c584946efd0457110062f841a7 (patch)
treedfe4e2be32742ae00aaffe36139ed046f395bc1f /config
parentfa3da3cf09af1b688295d27ac96e55f115d8ffd2 (diff)
Avoid error message about missing gcc.
Submitted by: Niels Poppe <niels@netbox.org>
Diffstat (limited to 'config')
-rwxr-xr-xconfig2
1 files changed, 1 insertions, 1 deletions
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