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

svn commit: r1358256 - /incubator/flex/trunk/frameworks/projects/flash-integration/build.xml

Author: aharui
Date: Fri Jul  6 15:13:59 2012
New Revision: 1358256

URL: http://svn.apache.org/viewvc?rev=1358256&view=rev
Log:
Fix MXP creation on Windows

Modified:
    incubator/flex/trunk/frameworks/projects/flash-integration/build.xml

Modified: incubator/flex/trunk/frameworks/projects/flash-integration/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/frameworks/projects/flash-integration/build.xml?rev=1358256&r1=1358255&r2=1358256&view=diff
==============================================================================
--- incubator/flex/trunk/frameworks/projects/flash-integration/build.xml (original)
+++ incubator/flex/trunk/frameworks/projects/flash-integration/build.xml Fri Jul  6 15:13:59 2012
@@ -189,10 +189,11 @@
     
     <target name="PackageMXP" if="ADOBE_EXTENSION_MANAGER.set" >
         <echo message="Creating MXP file ${FLEX_HOME}/frameworks/flash-integration/FlexComponentKit.mxp" />
+        <mkdir dir="${FLEX_HOME}/frameworks/flash-integration" /> 
         <exec executable="${env.ADOBE_EXTENSION_MANAGER}" dir="${basedir}" failonerror="true">
             <arg value="-suppress" />
             <arg value="-package" />
-            <arg value="mxi=${basedir}/FlexComponentKit.mxi" />
+            <arg value="mxi=FlexComponentKit.mxi" />
             <arg value="mxp=${FLEX_HOME}/frameworks/flash-integration/FlexComponentKit.mxp" />
         </exec>
     </target>