diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-06 08:57:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-06 08:57:32 +0300 |
commit | 47ef127cb4f217c00bd7b382008be6e7444af93e (patch) | |
tree | 74626f58a10ac077e26aa0fe6c56d573703702d7 /hyphen | |
parent | 5cf5db763f05928d88fea377e43f8488c990129f (diff) |
Always compare CROSS_COMPILING explicitly to "YES"
Diffstat (limited to 'hyphen')
-rw-r--r-- | hyphen/makefile.mk | 4 |
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 ------------------------------------------------------ |