lpgcc was too noisy in some cases

Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org> 


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6357 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2011-02-14 19:24:37 +00:00 committed by Patrick Georgi
parent 6b5ca4efb9
commit a4a022c941
1 changed files with 3 additions and 1 deletions

View File

@ -30,12 +30,14 @@
# let's not recurse. # let's not recurse.
# This is a hack, I know, but it makes sure that really simple user errors # This is a hack, I know, but it makes sure that really simple user errors
# don't fork-bomb your machine. # don't fork-bomb your machine.
echo "CC = $CC" # echo "CC = $CC"
if [ -n "$CC" ]; then
b=`basename $CC` b=`basename $CC`
if [ "$b" = "lpgcc" ]; then if [ "$b" = "lpgcc" ]; then
CC="" CC=""
fi fi
fi