diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-06-30 17:13:58 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-06-30 17:13:58 +0000 |
commit | 9dd27bc03a53f69b55c1c9718a5e44365019c082 (patch) | |
tree | cd5f148aa936f72914a5b3383cb404840a83f194 /src/config/Config.lb | |
parent | 36f230eefb5a072240447fdbe1aa81ad1bb80072 (diff) |
the tool chain settings should not be in renamed (as they will never live in
Kconfig)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4384 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config/Config.lb')
-rw-r--r-- | src/config/Config.lb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 5ca864db3f..25b2127bb9 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -136,7 +136,7 @@ end # the buildrom tool makerule buildrom depends "$(TOP)/util/buildrom/buildrom.c" - action "$(CONFIG_HOSTCC) -o $@ $<" + action "$(HOSTCC) -o $@ $<" end # Force crt0.s (which has build time version code in it to rebuild every time) @@ -178,13 +178,13 @@ end # be in a correct and valid state if it exists because the move is atomic. makerule ../romcc depends "$(TOP)/util/romcc/romcc.c" - action "$(CONFIG_HOSTCC) -g $(HOSTCFLAGS) $< -o romcc.tmpfile" + action "$(HOSTCC) -g $(HOSTCFLAGS) $< -o romcc.tmpfile" action "mv romcc.tmpfile $@" end makerule build_opt_tbl depends "$(TOP)/util/options/build_opt_tbl.c $(TOP)/src/include/pc80/mc146818rtc.h $(TOP)/src/include/boot/coreboot_tables.h Makefile.settings Makefile" - action "$(CONFIG_HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) $< -o $@" + action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) $< -o $@" end makerule option_table.h option_table.c |