]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed syntax of test for -fvtable-thunks so it works.
authorJulian Smart <julian@anthemion.co.uk>
Sun, 8 Sep 2002 10:48:46 +0000 (10:48 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 8 Sep 2002 10:48:46 +0000 (10:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/makeg95.env

index f896f4ef1877cba5a8583f62608cf44514f3015f..ed0e3144c3943954dbea4c1082a32f96b5a7a8d5 100644 (file)
@@ -63,7 +63,11 @@ endif
 
 ifeq ($(MINGW32),1)
   ifneq "$(_GCC295)$(_GCC3)" ""
-    CC = gcc --pipe $(if $(_GCC3), , -fvtable-thunks)
+    ifeq ($(_GCC3),1)
+      CC = gcc --pipe
+    else
+      CC = gcc --pipe -fvtable-thunks
+    endif
   else
     CC = gcc
   endif