Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2008-03-10 19:03:58 +0300
committerChris Want <cwant@ualberta.ca>2008-03-10 19:03:58 +0300
commite0e1f07208479959a673ba8ad516f9f1d70a4b52 (patch)
treebad62cf251a935070d6c92341487d52bf52d1568 /Makefile
parentcfc3a37a37031be98b1ca6f6a33c25ff5a872251 (diff)
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 230f223b67d..1189a3abeea 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ endif
DIRS ?= extern intern source
-ifeq ($(INTERNATIONAL),true)
+ifneq ($(INTERNATIONAL),false)
DIRS += po
endif