Project

General

Profile

« Previous | Next » 

Revision 6169

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.

View differences:

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