summaryrefslogtreecommitdiff
path: root/hyphen
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-06-06 08:57:32 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-06-06 08:57:32 +0300
commit47ef127cb4f217c00bd7b382008be6e7444af93e (patch)
tree74626f58a10ac077e26aa0fe6c56d573703702d7 /hyphen
parent5cf5db763f05928d88fea377e43f8488c990129f (diff)
Always compare CROSS_COMPILING explicitly to "YES"
Diffstat (limited to 'hyphen')
-rw-r--r--hyphen/makefile.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyphen/makefile.mk b/hyphen/makefile.mk
index d7169e4ee343..80f5bbd74cac 100644
--- a/hyphen/makefile.mk
+++ b/hyphen/makefile.mk
@@ -99,8 +99,8 @@ BUILD_ACTION=dmake
OUT2INC += hyphen.h
.ENDIF # "$(GUI)"=="WNT"
-.IF "$(CROSS_COMPILING)"!=""
-CONFIGURE_FLAGS+= --build="$(BUILD_PLATFORM)" --host="$(HOST_PLATFORM)"
+.IF "$(CROSS_COMPILING)"=="YES"
+CONFIGURE_FLAGS+= --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
.ENDIF
# --- Targets ------------------------------------------------------