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:
Chris Want 2008-03-10 16:03:58 +00:00
parent cfc3a37a37
commit e0e1f07208

@ -52,7 +52,7 @@ endif
DIRS ?= extern intern source
ifeq ($(INTERNATIONAL),true)
ifneq ($(INTERNATIONAL),false)
DIRS += po
endif