From: Mikhail Cherkashin Date: Fri, 28 Jul 2017 11:14:25 +0000 (+0300) Subject: Do not include shell when not enabled X-Git-Tag: 1.1_Public_Release~318^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0a55c6e5448f6f16fc3ad0820536905c3ce1a71;p=rtos%2Ftinyara.git Do not include shell when not enabled Excluding shell when ENABLE_SHELL config is undefined. Change-Id: I94dfbc5155d5ccbdd012294ec0848c7f6e4836b3 Signed-off-by: Mikhail Cherkashin --- diff --git a/apps/shell/Make.defs b/apps/shell/Make.defs index 4327e59..b9ea77b 100644 --- a/apps/shell/Make.defs +++ b/apps/shell/Make.defs @@ -16,4 +16,6 @@ # ########################################################################### +ifeq ($(CONFIG_TASH),y) CONFIGURED_APPS += shell +endif