diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-06 09:07:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-06 09:07:30 +0300 |
commit | 78f9b77628e5288e47ad5de4722c4a69c6295406 (patch) | |
tree | e7142f556d976c5cb9fe018932b00a69d197b359 /hunspell | |
parent | 8cae99e1be367fc801acaaadfe4879ff1ebb4aa4 (diff) |
Always compare CROSS_COMPILING explicitly to "YES"
Diffstat (limited to 'hunspell')
-rw-r--r-- | hunspell/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hunspell/makefile.mk b/hunspell/makefile.mk index d1498cdb8483..5a6ea0cccafb 100644 --- a/hunspell/makefile.mk +++ b/hunspell/makefile.mk @@ -66,7 +66,7 @@ CONFIGURE_FLAGS+= CFLAGS="$(EXTRA_CFLAGS)" CXXFLAGS="$(EXTRA_CFLAGS)" CONFIGURE_FLAGS+=CPPFLAGS="$(EXTRA_CDEFS)" .ENDIF -.IF "$(CROSS_COMPILING)"!="" +.IF "$(CROSS_COMPILING)"=="YES" CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) .ENDIF |