Change to Makefile logic for processing the po directory:
rather than processing it only when INTERNATIONAL is set to true, instead only disabling processing it only if INTERNATIONAL is set to false. The reason for this change is because the Makefile in the top level directory doesn't read all of the variables set in source/nan_definitions.mk, and with the current scheme the po's would only get processed if the user had explicitely set INTERNATIONAL to true.
This commit is contained in:
parent
cfc3a37a37
commit
e0e1f07208
2
Makefile
2
Makefile
@ -52,7 +52,7 @@ endif
|
||||
|
||||
DIRS ?= extern intern source
|
||||
|
||||
ifeq ($(INTERNATIONAL),true)
|
||||
ifneq ($(INTERNATIONAL),false)
|
||||
DIRS += po
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user