defs.mk: Now not logging cfg_xxx.mk inclusion failure as error any longer

This commit is contained in:
Jan Lindemann 2008-01-03 12:02:04 +00:00 committed by Jan Lindemann
commit 037529e7f6

View file

@ -82,11 +82,11 @@ export REENTRANT
USE_CFG_XXX_MK ?= true
ifeq ($(USE_CFG_XXX_MK),true)
ifeq ($(DEVELOPMENT),true)
include $(MODDIR)/make/defs-dev.mk
include $(TOPDIR)/make/cfg_dev.mk
-include $(MODDIR)/make/defs-dev.mk
-include $(TOPDIR)/make/cfg_dev.mk
else
include $(MODDIR)/make/defs-dist.mk
include $(TOPDIR)/make/cfg_dist.mk
-include $(MODDIR)/make/defs-dist.mk
-include $(TOPDIR)/make/cfg_dist.mk
endif
endif