You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ch...@apache.org on 2012/06/03 22:08:17 UTC

svn commit: r1345758 - /incubator/flex/trunk/ide/flashbuilder/build.xml

Author: cherreman
Date: Sun Jun  3 20:08:16 2012
New Revision: 1345758

URL: http://svn.apache.org/viewvc?rev=1345758&view=rev
Log:
Removed slash in path to build.properties. Left out "{targetPlayerMajorVersion}.{targetPlayerMinorVersion}" when replacing playerglobalHome to avoid double version placeholders in config file.

Modified:
    incubator/flex/trunk/ide/flashbuilder/build.xml

Modified: incubator/flex/trunk/ide/flashbuilder/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/ide/flashbuilder/build.xml?rev=1345758&r1=1345757&r2=1345758&view=diff
==============================================================================
--- incubator/flex/trunk/ide/flashbuilder/build.xml (original)
+++ incubator/flex/trunk/ide/flashbuilder/build.xml Sun Jun  3 20:08:16 2012
@@ -26,7 +26,7 @@
     <property environment="env"/>
 
     <property file="${FLEX_HOME}/local.properties"/>
-    <property file="${FLEX_HOME}/build.pr/operties"/>
+    <property file="${FLEX_HOME}/build.properties"/>
 
     <!-- comes from build.propertes unless bin distro -->
     <property name="playerglobal.version" value="11.1"/>
@@ -95,7 +95,7 @@
                         value=""/>
                     <replacefilter
                         token="{playerglobalHome}"
-                        value="libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}"/>
+                        value="libs/player"/>
                 </replace>
         </sequential>
     </macrodef>