diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-23 00:40:29 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-23 00:44:15 +0300 |
commit | 20c82c0688d56d116558b9794ea5d13e4902493f (patch) | |
tree | bdc10939bb1345e5957f7ab3e324faf6529038d8 | |
parent | a1f0f63b378cca23be763ae3ce258ef60bdf18eb (diff) |
Look at COM to detect MinGW, not the weird USE_MINGW
-rw-r--r-- | solenv/gbuild/gbuild_simple.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/gbuild_simple.mk b/solenv/gbuild/gbuild_simple.mk index a84e2340acdd..18d1e07beb3a 100644 --- a/solenv/gbuild/gbuild_simple.mk +++ b/solenv/gbuild/gbuild_simple.mk @@ -83,7 +83,7 @@ include $(GBUILDDIR)/Helper.mk ifeq ($(OS),LINUX) include $(GBUILDDIR)/platform/linux.mk else ifeq ($(OS),WNT) -ifneq ($(USE_MINGW),) +ifeq ($(COM),GCC) include $(GBUILDDIR)/platform/winmingw.mk else include $(GBUILDDIR)/platform/windows.mk |