Skip to content

Commit ac14947

Browse files
scosumasahir0y
authored andcommitted
kconfig: Use KCONFIG_CONFIG instead of .config
When using a custom location for kernel config files this merge config command fails as it doesn't use the configuration set with KCONFIG_CONFIG. Signed-off-by: Markus Schneider-Pargmann <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 407868d commit ac14947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kconfig/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ config-fragments = $(call configfiles,$@)
107107

108108
%.config: $(obj)/conf
109109
$(if $(config-fragments),, $(error $@ fragment does not exists on this architecture))
110-
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(config-fragments)
110+
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m $(KCONFIG_CONFIG) $(config-fragments)
111111
$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
112112

113113
PHONY += tinyconfig

0 commit comments

Comments
 (0)