diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-08-23 00:03:06 (GMT) |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-08-26 11:59:43 (GMT) |
commit | 9ba9568259f71bc848ac460bc616ce9640634693 (patch) | |
tree | dea606acd298e4172476497f01a8822adbe8b57e /scripts/kconfig | |
parent | c24035b9edad6164ddc12e88444acea741d5e309 (diff) | |
download | linux-fsl-qoriq-9ba9568259f71bc848ac460bc616ce9640634693.tar.xz |
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 7522a8b..06c1c2f 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -145,10 +145,8 @@ check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh # Use recursively expanded variables so we do not call gcc unless # we really need to do so. (Do not call gcc as part of make mrproper) -HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) - -HOST_EXTRACFLAGS += -DLOCALE - +HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \ + -DLOCALE # =========================================================================== # Shared Makefile for the various kconfig executables: |