diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-04 05:41:34 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-09-16 12:23:58 -0400 |
commit | f458e3559b4a77b72c2143b6c61e0bfbf07035bc (patch) | |
tree | 8a739deb5bfab953c6967cfc65cbf912a05b22c9 /Makefile | |
parent | dee745bf3d9ba14da6992b829bb168adc2d1c873 (diff) | |
download | u-boot-imx-f458e3559b4a77b72c2143b6c61e0bfbf07035bc.zip u-boot-imx-f458e3559b4a77b72c2143b6c61e0bfbf07035bc.tar.gz u-boot-imx-f458e3559b4a77b72c2143b6c61e0bfbf07035bc.tar.bz2 |
kconfig: fix a bug of "make config"
Since 3ff291f371fa9858426774f3732924bacb61ed1c
(kconfig: convert Kconfig helper script into a shell script),
"make config" is not working because of a missing '$' before '(Q)'.
Besides, "make config" should be invoked via scripts/multiconfig.sh
to avoid a warning message:
Kconfig:11:warning: environment variable KCONFIG_OBJDIR undefined
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -458,7 +458,7 @@ KBUILD_DEFCONFIG := sandbox_defconfig export KBUILD_DEFCONFIG KBUILD_KCONFIG config: scripts_basic outputmakefile FORCE - (Q)$(MAKE) $(build)=scripts/kconfig $@ + +$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@ %config: scripts_basic outputmakefile FORCE +$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@ |