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 /external | |
parent | 5cf5db763f05928d88fea377e43f8488c990129f (diff) |
Always compare CROSS_COMPILING explicitly to "YES"
Diffstat (limited to 'external')
-rw-r--r-- | external/gcc3_specific/makefile.mk | 2 | ||||
-rw-r--r-- | external/mingwheaders/makefile.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/external/gcc3_specific/makefile.mk b/external/gcc3_specific/makefile.mk index 741288c37e13..53765c9eb55b 100644 --- a/external/gcc3_specific/makefile.mk +++ b/external/gcc3_specific/makefile.mk @@ -11,7 +11,7 @@ TARGET=gcc3_specific .IF "$(GUI)" == "WNT" -.IF "$(CROSS_COMPILING)" == "" +.IF "$(CROSS_COMPILING)" != "YES" # Don't do any of this weird and presumably obsolete crack when # cross-compiling diff --git a/external/mingwheaders/makefile.mk b/external/mingwheaders/makefile.mk index 83d9011dbac8..1928a2c2ca94 100644 --- a/external/mingwheaders/makefile.mk +++ b/external/mingwheaders/makefile.mk @@ -33,7 +33,7 @@ TARGET=mingwheaders .IF "$(OS)$(COM)" == "WNTGCC" -.IF "$(CROSS_COMPILING)" == "" +.IF "$(CROSS_COMPILING)" != "YES" # Don't do any of this weird and presumably obsolete crack when # cross-compiling |