mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Make.defs: Change "ifeq ($(XXX),y)" to "ifneq ($(XXX),)
to support the tristate option correctly and unify the usage Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
97440889ac
commit
4941182cc6
79 changed files with 81 additions and 81 deletions
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_FLASH_ERASEALL),y)
|
||||
ifneq ($(CONFIG_FSUTILS_FLASH_ERASEALL),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/flash_eraseall
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_INIFILE),y)
|
||||
ifneq ($(CONFIG_FSUTILS_INIFILE),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/inifile
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_INIH),y)
|
||||
ifneq ($(CONFIG_FSUTILS_INIH),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/inih
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_IPCFG),y)
|
||||
ifneq ($(CONFIG_FSUTILS_IPCFG),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/ipcfg
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_MKFATFS),y)
|
||||
ifneq ($(CONFIG_FSUTILS_MKFATFS),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/mkfatfs
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_MKSMARTFS),y)
|
||||
ifneq ($(CONFIG_FSUTILS_MKSMARTFS),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/mksmartfs
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@
|
|||
#
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_FSUTILS_PASSWD),y)
|
||||
ifneq ($(CONFIG_FSUTILS_PASSWD),)
|
||||
CONFIGURED_APPS += $(APPDIR)/fsutils/passwd
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue