[coreboot] [commit] r6294 - trunk/util/nvramtool

repository service svn at coreboot.org
Mon Jan 24 22:05:54 CET 2011


Author: ruik
Date: Mon Jan 24 22:05:53 2011
New Revision: 6294
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6294

Log:
Add CFLAGS when compiling resulting executable. It broke 64bit systems, because the rest uses -m32 now.

Signed-off-by: Rudolf Marek <r.marek at assembler.cz>
Acked-by: Rudolf Marek <r.marek at assembler.cz>

Modified:
   trunk/util/nvramtool/Makefile

Modified: trunk/util/nvramtool/Makefile
==============================================================================
--- trunk/util/nvramtool/Makefile	Mon Jan 24 08:50:07 2011	(r6293)
+++ trunk/util/nvramtool/Makefile	Mon Jan 24 22:05:53 2011	(r6294)
@@ -39,7 +39,7 @@
 all: dep $(PROGRAM)
 
 $(PROGRAM): $(OBJS)
-	$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
+	$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) $(CFLAGS)
 	$(STRIP) $(STRIP_ARGS) $(PROGRAM)
 
 clean:




More information about the coreboot mailing list