You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2007/03/01 14:07:04 UTC

svn commit: r513302 - /harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml

Author: gshimansky
Date: Thu Mar  1 05:07:03 2007
New Revision: 513302

URL: http://svn.apache.org/viewvc?view=rev&rev=513302
Log:
Fixed linkerargs to accept property value instead of its name


Modified:
    harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml

Modified: harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml?view=diff&rev=513302&r1=513301&r2=513302
==============================================================================
--- harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml (original)
+++ harmony/enhanced/drlvm/trunk/build/make/targets/build.native.xml Thu Mar  1 05:07:03 2007
@@ -215,8 +215,8 @@
             outfile="${lib.out.dir}/${libname}"
             outtype="${outtype}"  subsystem="console">
             <select os="win">
-                <linkerarg value="/pdb:${build.dir}/_bin/${libname}.pdb" if="not.static" />
-                <linkerarg value="/debug" if="not.static" />
+                <linkerarg value="/pdb:${build.dir}/_bin/${libname}.pdb" if="${not.static}" />
+                <linkerarg value="/debug" if="${not.static}" />
             </select>
             <linker refid="linker" />
             <fileset refid="link.fileset" />