Revision 13411
Added by Aaron Marcuse-Kubitza over 10 years ago
input.Makefile | ||
---|---|---|
227 | 227 |
dbExports := $(strip $(dbExports))# += adds extra whitespace |
228 | 228 |
allInstalls := $(if $(dbExports),sql) $(allTables) |
229 | 229 |
|
230 |
datasrc_schema_exists = schema=$(schema) $(root)/lib/runscripts/local.run\
|
|
231 |
pg_schema_exists && echo t
|
|
230 |
datasrc_schema_exists = $(shell schema=$(schema)\
|
|
231 |
$(root)/lib/runscripts/local.run pg_schema_exists && echo t)
|
|
232 | 232 |
|
233 | 233 |
install: _always |
234 | 234 |
$(if $(wildcard ./run),./run,+$(selfMake) install_oldstyle) |
Also available in: Unified diff
bugfix: inputs/input.Makefile: $(datasrc_schema_exists): need to use $(shell ...)