summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNicolas Schodet2012-10-22 23:12:32 +0200
committerNicolas Schodet2019-10-06 23:29:59 +0200
commit1c9e04acef3b61e803a3b0b341e758fbc338faf5 (patch)
treeb381616de62f2c4ee0247e5eb64374ec9996cce0 /build
parent7fd5a2728a96246379d91513a0ed160054eb18f3 (diff)
build: fix spurious config build because of unwanted space
Diffstat (limited to 'build')
-rw-r--r--build/config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/config.mk b/build/config.mk
index 6f3f527..51ca92f 100644
--- a/build/config.mk
+++ b/build/config.mk
@@ -5,7 +5,7 @@
PROJECT_CONFIG ?= Config
MODULES_CONFIG := $(wildcard $(ALL_MODULES:%=$(BASE)/ucoolib/%/Config))
-CONFIG_LIST := $(wildcard $(PROJECT_CONFIG)) $(MODULES_CONFIG)
+CONFIG_LIST := $(strip $(wildcard $(PROJECT_CONFIG)) $(MODULES_CONFIG))
# Ensure that configuration is up to date, using two mechanisms:
# - make will make sure config.list is up to date as it is included.