aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-06-30 17:13:58 +0000
committerStefan Reinauer <stepan@openbios.org>2009-06-30 17:13:58 +0000
commit9dd27bc03a53f69b55c1c9718a5e44365019c082 (patch)
treecd5f148aa936f72914a5b3383cb404840a83f194 /src/config
parent36f230eefb5a072240447fdbe1aa81ad1bb80072 (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')
-rw-r--r--src/config/Config.lb6
-rw-r--r--src/config/Options.lb2
2 files changed, 4 insertions, 4 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
diff --git a/src/config/Options.lb b/src/config/Options.lb
index 428e657a9d..08f9839823 100644
--- a/src/config/Options.lb
+++ b/src/config/Options.lb
@@ -86,7 +86,7 @@ define CC
export always
comment "Target C Compiler"
end
-define CONFIG_HOSTCC
+define HOSTCC
default "gcc"
export always
comment "Host C Compiler"