[coreboot] r3094 - trunk/coreboot-v2/targets

svn at coreboot.org svn at coreboot.org
Thu Feb 7 22:50:22 CET 2008


Author: ward
Date: 2008-02-07 22:50:22 +0100 (Thu, 07 Feb 2008)
New Revision: 3094

Modified:
   trunk/coreboot-v2/targets/buildtarget
Log:

Make the check for -fno-stack-protector fail silently, if it fails.

This is a trivial patch.

Signed-off-by: Ward Vandewege <ward at gnu.org>
Acked-by: Ward Vandewege <ward at gnu.org>



Modified: trunk/coreboot-v2/targets/buildtarget
===================================================================
--- trunk/coreboot-v2/targets/buildtarget	2008-02-07 20:37:37 UTC (rev 3093)
+++ trunk/coreboot-v2/targets/buildtarget	2008-02-07 21:50:22 UTC (rev 3094)
@@ -61,7 +61,7 @@
        CC=gcc
 fi
 
-$CC -fno-stack-protector -S -xc /dev/null -o .$$.tmp
+$CC -fno-stack-protector -S -xc /dev/null -o .$$.tmp 2>/dev/null
 
 if [ $? -eq 0 ]; then
        EXTRA_CFLAGS=-fno-stack-protector





More information about the coreboot mailing list