This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new fc1045271 Directory.mk: Always generate and remove .kconfig fc1045271 is described below commit fc1045271a7798b14c8344c5e57af93eab5fabeb Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Mon Mar 13 20:33:58 2023 +0800 Directory.mk: Always generate and remove .kconfig since .kconfig is required to trigger the recursive processing Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com> --- 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