From fc1045271a7798b14c8344c5e57af93eab5fabeb Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Mon, 13 Mar 2023 20:33:58 +0800 Subject: [PATCH] Directory.mk: Always generate and remove .kconfig since .kconfig is required to trigger the recursive processing Signed-off-by: Xiang Xiao --- Directory.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.mk b/Directory.mk index e2f7069d4..230d75a2c 100644 --- a/Directory.mk +++ b/Directory.mk @@ -47,15 +47,15 @@ install: preconfig: $(foreach SDIR, $(CONFIGSUBDIRS), $(SDIR)_preconfig) ifneq ($(MENUDESC),) $(Q) $(MKKCONFIG) -m $(MENUDESC) - $(Q) touch .kconfig endif + $(Q) touch .kconfig clean: $(foreach SDIR, $(CLEANSUBDIRS), $(SDIR)_clean) distclean: $(foreach SDIR, $(CLEANSUBDIRS), $(SDIR)_distclean) ifneq ($(MENUDESC),) $(call DELFILE, Kconfig) - $(call DELFILE, .kconfig) endif + $(call DELFILE, .kconfig) -include Make.dep