Avoid error message about missing gcc.
Submitted by: Niels Poppe <niels@netbox.org>
This commit is contained in:
parent
fa3da3cf09
commit
44a25707fd
1 changed files with 1 additions and 1 deletions
2
config
2
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
|
||||
|
|
Loading…
Reference in a new issue