diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-08-22 20:03:06 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-08-26 07:59:43 -0400 |
commit | 9ba9568259f71bc848ac460bc616ce9640634693 (patch) | |
tree | dea606acd298e4172476497f01a8822adbe8b57e /scripts/kconfig | |
parent | c24035b9edad6164ddc12e88444acea741d5e309 (diff) |
kbuild: don't overwrite HOST_EXTRACFLAGS
This might be used by the user to specify extra arguments for the host
compiler.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 7522a8bc0553..06c1c2f80bb7 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -145,10 +145,8 @@ check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh | |||
145 | 145 | ||
146 | # Use recursively expanded variables so we do not call gcc unless | 146 | # Use recursively expanded variables so we do not call gcc unless |
147 | # we really need to do so. (Do not call gcc as part of make mrproper) | 147 | # we really need to do so. (Do not call gcc as part of make mrproper) |
148 | HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) | 148 | HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \ |
149 | 149 | -DLOCALE | |
150 | HOST_EXTRACFLAGS += -DLOCALE | ||
151 | |||
152 | 150 | ||
153 | # =========================================================================== | 151 | # =========================================================================== |
154 | # Shared Makefile for the various kconfig executables: | 152 | # Shared Makefile for the various kconfig executables: |