build: Make it easier to disable plugins
Instead of 'ifdef ENABLEPLUGINS' (which always gets set) use 'ifeq(yes,$(ENABLEPLUGINS))' which means any value other than 'yes' is treated as a negative. Change-Id: I6c92eef5565328f1bb9f64a4d379dec697354224
This commit is contained in:
parent
2f785c7797
commit
9e15c19891
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ else # core
|
|||
include $(APPSDIR)/apps.make
|
||||
include $(ROOTDIR)/lib/rbcodec/rbcodec.make
|
||||
|
||||
ifdef ENABLEDPLUGINS
|
||||
ifeq ($(ENABLEDPLUGINS),yes)
|
||||
include $(APPSDIR)/plugins/bitmaps/pluginbitmaps.make
|
||||
include $(APPSDIR)/plugins/plugins.make
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue