From ab45c55a3aab4a9a9650ab66f0999a21be532b64 Mon Sep 17 00:00:00 2001 From: Junhwan Park Date: Thu, 20 Apr 2017 20:12:54 +0900 Subject: [PATCH] builtin: fix tash builtin application Fixed an issue where menuconfig would run abnormally when the registered application was deleted again. Change-Id: I5b75c06c273561adabd58aaf966239a2f6de85b4 Fixes: 3f9534358cc9 ("builtin: add tash builtin application") Signed-off-by: Junhwan Park --- os/Makefile.unix | 1 + os/Makefile.win | 1 + 2 files changed, 2 insertions(+) diff --git a/os/Makefile.unix b/os/Makefile.unix index 4fbf24a..42d2257 100644 --- a/os/Makefile.unix +++ b/os/Makefile.unix @@ -397,6 +397,7 @@ context: check_context iotivity_context include/tinyara/config.h include/tinyara $(Q) for dir in $(CONTEXTDIRS) ; do \ $(MAKE) -C $$dir TOPDIR="$(TOPDIR)" context; \ done + $(call DELFILE, $(APPDIR)/builtin/registry/*.?dat) # clean_context # diff --git a/os/Makefile.win b/os/Makefile.win index 8a4ac81..1eedacb 100644 --- a/os/Makefile.win +++ b/os/Makefile.win @@ -385,6 +385,7 @@ context: check_context include\tinyara\config.h include\tinyara\version.h includ $(call DELFILE, $(BIN_DIR)\*.*) ) $(Q) for %%G in ($(CONTEXTDIRS)) do ( $(MAKE) -C %%G TOPDIR="$(TOPDIR)" context ) + $(call DELFILE, $(APPDIR)\builtin\registry\*.?dat) # clean_context # -- 2.7.4