summaryrefslogtreecommitdiff
path: root/util/newconfig
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-04-21 12:41:55 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-04-21 12:41:55 +0000
commit5cda45d5ec2dc2b112cb7ec1a95b861f1fa9fd2b (patch)
tree59210b61518a9c8e71e65e2bddbce1d99ad8d026 /util/newconfig
parent7bd658873c5b4066b4f247255cb7a98ba1750cd1 (diff)
downloadcoreboot-5cda45d5ec2dc2b112cb7ec1a95b861f1fa9fd2b.tar.xz
scan-build prefers -include over --includes=, gcc knows both.
With this change, romcc knows -include and the build system uses it. Also use a full path to settings.h because scan-build has trouble finding it otherwise. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Joseph Smith <joe@settoplinux.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4151 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig')
-rw-r--r--util/newconfig/config.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g
index 69b3b64a80..a8130c8c66 100644
--- a/util/newconfig/config.g
+++ b/util/newconfig/config.g
@@ -2098,7 +2098,7 @@ def writeimagemakefile(image):
file.write("# Function to create an item like -Di586 or -DCONFIG_MAX_CPUS='1' or -Ui686\n")
file.write("D_item = $(shell echo '$(if $(subst undefined,,$(origin $1)),\\#define $1$(if $($1), $($1),),\\#undef $1)' >> settings.h)\n\n")
file.write("# Compute the value of CPUFLAGS here during make's first pass.\n")
- file.write("CPUFLAGS := $(strip $(shell echo '/* autogenerated */' > settings.h)$(foreach _var_,$(VARIABLES),$(call D_item,$(_var_)))--include=settings.h)\n\n")
+ file.write("CPUFLAGS := $(strip $(shell echo '/* autogenerated */' > settings.h)$(foreach _var_,$(VARIABLES),$(call D_item,$(_var_)))-include $(PWD)/settings.h)\n\n")
for i in image.getuserdefines():
file.write("%s\n" %i)