Commit 44a25707 authored by Ulf Möller's avatar Ulf Möller
Browse files

Avoid error message about missing gcc.

Submitted by: Niels Poppe <niels@netbox.org>
parent fa3da3cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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