Revision 6170
Added by Aaron Marcuse-Kubitza about 12 years ago
input.Makefile | ||
---|---|---|
134 | 134 |
allSubdirs := $(call wildcard/,*/) |
135 | 135 |
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%))) |
136 | 136 |
joinedTables := $(filter-out $(tables),$(allTables)) |
137 |
allTables := $(joinedTables) $(tables)# move joined tables to beginning
|
|
137 |
allTables := $(strip $(joinedTables) $(tables))# move joined tables to beginning
|
|
138 | 138 |
ifeq ($(tables),)# none specified in sort file |
139 | 139 |
tables := $(allTables) |
140 | 140 |
endif |
Also available in: Unified diff
input.Makefile: Existing maps discovery: $(allTables): Fixed bug where need to remove extra whitespace before $(tables) when there are no $(joinedTables)