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 /cppunit | |
parent | 5cf5db763f05928d88fea377e43f8488c990129f (diff) |
Always compare CROSS_COMPILING explicitly to "YES"
Diffstat (limited to 'cppunit')
-rw-r--r-- | cppunit/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppunit/makefile.mk b/cppunit/makefile.mk index 265bcdcadfd4..4315adf8c9f7 100644 --- a/cppunit/makefile.mk +++ b/cppunit/makefile.mk @@ -40,7 +40,7 @@ PATCH_FILES = solarisfinite.patch warnings.patch windows.patch ldflags.patch aix # warnings.patch: see <https://sourceforge.net/tracker/?func=detail& # aid=2912630&group_id=11795&atid=311795> -.IF "$(CROSS_COMPILING)"=="" +.IF "$(CROSS_COMPILING)"!="YES" .IF "$(OS)" == "WNT" .IF "$(COM)" == "MSC" |