Avoid error message about missing gcc.

Submitted by: Niels Poppe <niels@netbox.org>
This commit is contained in:
Ulf Möller 1999-04-08 19:51:16 +00:00
parent fa3da3cf09
commit 44a25707fd

2
config
View file

@ -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