You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/05/04 02:48:36 UTC

svn commit: r1333707 - in /incubator/flex/trunk: README build.xml

Author: cframpton
Date: Fri May  4 00:48:36 2012
New Revision: 1333707

URL: http://svn.apache.org/viewvc?rev=1333707&view=rev
Log:
Fix FLASHPLAYER_DEBUGGER which should point to the actual executable, not the directory which contains the executable.

Modified:
    incubator/flex/trunk/README
    incubator/flex/trunk/build.xml

Modified: incubator/flex/trunk/README
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/README?rev=1333707&r1=1333706&r2=1333707&view=diff
==============================================================================
--- incubator/flex/trunk/README (original)
+++ incubator/flex/trunk/README Fri May  4 00:48:36 2012
@@ -74,7 +74,9 @@ Install Prerequisites
     Adobe AIR Integration Kit               AIR_HOME 
     
     Adobe Flash Player Content Debugger     FLASHPLAYER_DEBUGGER
-    
+    (windows) FlashPlayerDebugger.exe
+    (mac) Flash Player Debugger in Flash Player Debugger.app/Contents/MacOS
+    (linux) flashplayerdebugger
     ==================================================================================
 
     Adobe Flex 4.6 was certified with AIR 3.1 and Flash Player 11.1.
@@ -87,7 +89,7 @@ Install Prerequisites
         
     The Adobe Flash Player playerglobal.swc for 11.1 can be downloaded from:
         http://opensource.adobe.com/svn/opensource/flex/sdk/branches/4.y/frameworks/libs/player/11.1/playerglobal.swc
-                    
+    
     For testing, the Flash Player's mm.cfg file must have the following entries
     
         ErrorReportingEnable=1

Modified: incubator/flex/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/build.xml?rev=1333707&r1=1333706&r2=1333707&view=diff
==============================================================================
--- incubator/flex/trunk/build.xml (original)
+++ incubator/flex/trunk/build.xml Fri May  4 00:48:36 2012
@@ -995,15 +995,10 @@
         description="Set flash.player and adl properties"> 
         
         <!-- Paths to the debug standalone flashplayer. -->
-        <condition property="flash.player" value="${env.FLASHPLAYER_DEBUGGER}/FlashPlayerDebugger.exe">
-            <os family="windows"/>
-        </condition>
-        <condition property="flash.player" value="${env.FLASHPLAYER_DEBUGGER}/Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger">
-            <os family="mac"/>
-        </condition>
-        <condition property="flash.player" value="${env.FLASHPLAYER_DEBUGGER}/flashplayerdebugger">
-            <os family="unix"/>
-        </condition>
+        <!-- (windows) path to FlashPlayerDebugger.exe -->
+        <!-- (mac) path to Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger -->
+        <!-- (linux) path to flashplayerdebugger -->
+        <property name="flash.player" value="${env.FLASHPLAYER_DEBUGGER}"/>
     
         <!-- Paths to the adl. -->
         <condition property="adl" value="${env.AIR_HOME}/bin/adl.exe">