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/12/20 22:40:43 UTC

svn commit: r1424714 - /incubator/flex/sdk/branches/develop/modules/build.xml

Author: cframpton
Date: Thu Dec 20 21:40:43 2012
New Revision: 1424714

URL: http://svn.apache.org/viewvc?rev=1424714&view=rev
Log:
When cleaning the lib dir don't delete AIR's adt.jar if it is there (ie if you are using your dev tree as a FB SDK).

Modified:
    incubator/flex/sdk/branches/develop/modules/build.xml

Modified: incubator/flex/sdk/branches/develop/modules/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/modules/build.xml?rev=1424714&r1=1424713&r2=1424714&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/modules/build.xml (original)
+++ incubator/flex/sdk/branches/develop/modules/build.xml Thu Dec 20 21:40:43 2012
@@ -86,6 +86,7 @@
         <delete includeemptydirs="true" failonerror="false">
             <fileset dir="${FLEX_LIB}">
                 <include name="*" />
+                <exclude name="adt.jar"/>
             </fileset>
         </delete>
 	</target>