summaryrefslogtreecommitdiff
path: root/util/nvramtool/Makefile
diff options
context:
space:
mode:
authorRudolf Marek <r.marek@assembler.cz>2011-01-24 21:05:53 +0000
committerRudolf Marek <r.marek@assembler.cz>2011-01-24 21:05:53 +0000
commit6e296653091e0258b5cc49769db48e3b61ecae44 (patch)
treef197cbf58cdc03cc470988fceedc939d25c97ca0 /util/nvramtool/Makefile
parenta302b58d0157dd216522ca468979b7fcc8b43d51 (diff)
downloadcoreboot-6e296653091e0258b5cc49769db48e3b61ecae44.tar.xz
Add CFLAGS when compiling resulting executable. It broke 64bit systems, because the rest uses -m32 now.
Signed-off-by: Rudolf Marek <r.marek@assembler.cz> Acked-by: Rudolf Marek <r.marek@assembler.cz> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6294 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/nvramtool/Makefile')
-rw-r--r--util/nvramtool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvramtool/Makefile b/util/nvramtool/Makefile
index 94fa707372..1bec52bbb2 100644
--- a/util/nvramtool/Makefile
+++ b/util/nvramtool/Makefile
@@ -39,7 +39,7 @@ endif
all: dep $(PROGRAM)
$(PROGRAM): $(OBJS)
- $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
+ $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) $(CFLAGS)
$(STRIP) $(STRIP_ARGS) $(PROGRAM)
clean: