Revision 6169
Added by Aaron Marcuse-Kubitza about 12 years ago
mappings.Makefile | ||
---|---|---|
1 |
ifndef termsSubdirs
|
|
1 |
ifeq ($(origin termsSubdirs),undefined)
|
|
2 | 2 |
$(error $$(termsSubdirs) required) |
3 | 3 |
endif |
4 | 4 |
|
Also available in: Unified diff
lib/mappings.Makefile: Checking if $(termsSubdirs) defined: Fixed bug where can't use ifndef because that checks if the variable is empty, not undefined. Need to use `ifeq ($(origin var),undefined)` instead.