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/10/07 17:10:20 UTC

svn commit: r1395326 - in /incubator/flex/sdk/branches/develop/mustella: build.xml scripts/shellrunner.sh

Author: aharui
Date: Sun Oct  7 15:10:20 2012
New Revision: 1395326

URL: http://svn.apache.org/viewvc?rev=1395326&view=rev
Log:
Fix Windows precompiles.  They used a command line that ran out of room.  Now uses env variable

Modified:
    incubator/flex/sdk/branches/develop/mustella/build.xml
    incubator/flex/sdk/branches/develop/mustella/scripts/shellrunner.sh

Modified: incubator/flex/sdk/branches/develop/mustella/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/build.xml?rev=1395326&r1=1395325&r2=1395326&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/build.xml (original)
+++ incubator/flex/sdk/branches/develop/mustella/build.xml Sun Oct  7 15:10:20 2012
@@ -561,6 +561,7 @@
             </filtermapper>
             <map from="${mustella.dir}/" to="" />
         </pathconvert>
+        <echo>shell_file_mxml_equivs is ${shell_file_mxml_equivs}</echo>
         
         <!-- this does likewise for the excluded ones -->
         <pathconvert property="shell_file_mxml_excludes" pathsep="," dirsep="/" >
@@ -574,6 +575,7 @@
         <!-- build the fileset -->
         <fileset id="mxml_equiv_shells" dir="${sdk.mustella.dir}" includes="${shell_file_mxml_equivs}" excludes="${shell_file_mxml_excludes}">
         </fileset>
+        <echo>mxml_equiv_shells is ${mxml_equiv_shells}</echo>
               
         <property name="showx0" refid="mxml_equiv_shells" />
         
@@ -589,6 +591,7 @@
         it seemed unreachable -->
         <taskdef name="getSiblingSwfs" classname="mustella.CousinPreCompile" classpathref="flex.test.classpath"/>
         <getSiblingSwfs files="${tmp111}${path.separator}${tmp111a}" root="${sdk.mustella.dir}" property="tmp.sdk.mustella.scripts2"  />
+        <echo>tmp.sdk.mustella.scripts2 is ${tmp.sdk.mustella.scripts2}</echo>
 
      </target>
 
@@ -602,7 +605,7 @@
         </pathconvert>
         <exec  executable="${shell}" failonerror="${exit_on_compile_error}">
             <arg value="${sdk.mustella.dir}/../scripts/shellrunner.sh" />
-            <arg value="${sdk.mustella.scripts2}" />
+            <env key="MUSTELLA_SCRIPTS2" value="${sdk.mustella.scripts2}" />
             <env key="SDK_DIR" value="${sdk.dir}" />
             <env key="MUSTELLA_DIR" value="${mustella.dir}" />
             <env key="USE_APOLLO" value="${use_apollo}" />

Modified: incubator/flex/sdk/branches/develop/mustella/scripts/shellrunner.sh
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/scripts/shellrunner.sh?rev=1395326&r1=1395325&r2=1395326&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/scripts/shellrunner.sh (original)
+++ incubator/flex/sdk/branches/develop/mustella/scripts/shellrunner.sh Sun Oct  7 15:10:20 2012
@@ -25,7 +25,7 @@ max=${NUMBER_OF_PROCESSORS:=1}
 j=0
 i=0
 
-list=($*)
+list=($MUSTELLA_SCRIPTS2)
 
 len=${#list[*]}