]> git.saurik.com Git - wxWidgets.git/commitdiff
Avoid defining COMPILER_PREFIX for autoconf format.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Dec 2009 19:40:22 +0000 (19:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Dec 2009 19:40:22 +0000 (19:40 +0000)
This fixes a fatal bakefile error due to undefined COMPILER variable when
using wx presets with autoconf backend introduced in r62458.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/wxpresets/presets/wx.bkl

index ff06b7f6fd803c7428e07f222d9ebf781279667d..9a22a95ce9e74d2950671c04742181df11ea6cf7 100644 (file)
         <if cond="WX_DEBUG=='0' and WX_UNICODE=='1'">u</if>
     </set>
 
-    <set var="COMPILER_PREFIX" make_var="1">$(COMPILER)</set>
+    <if cond="FORMAT!='autoconf'">
+        <set var="COMPILER_PREFIX" make_var="1">$(COMPILER)</set>
+    </if>