Override POCO_BUILD if it is undefined or empty.

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE
2015-11-16 11:35:37 +01:00
parent d08fb9b075
commit 46a261a0dd

View File

@@ -40,10 +40,10 @@ $(info PROJECT_BASE = $(PROJECT_BASE))
# Check for POCO_BUILD # Check for POCO_BUILD
# #
ifndef POCO_BUILD ifndef POCO_BUILD
POCO_BUILD = $(PROJECT_BASE) override POCO_BUILD = $(PROJECT_BASE)
endif endif
ifeq ($strip $(POCO_BUILD)),) ifeq ($(strip $(POCO_BUILD)),)
POCO_BUILD = $(PROJECT_BASE) override POCO_BUILD = $(PROJECT_BASE)
endif endif
export POCO_BUILD export POCO_BUILD
$(info POCO_BUILD = $(POCO_BUILD)) $(info POCO_BUILD = $(POCO_BUILD))