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/07 22:16:28 UTC

svn commit: r1347771 - /incubator/flex/trunk/build.xml

Author: cherreman
Date: Thu Jun  7 20:16:28 2012
New Revision: 1347771

URL: http://svn.apache.org/viewvc?rev=1347771&view=rev
Log:
Fixed issue with env.properties in "release" target: env.properties (when used) was included in source distro, env-template.properties was not included in the source and bin distros.

Modified:
    incubator/flex/trunk/build.xml

Modified: incubator/flex/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/build.xml?rev=1347771&r1=1347770&r2=1347771&view=diff
==============================================================================
--- incubator/flex/trunk/build.xml (original)
+++ incubator/flex/trunk/build.xml Thu Jun  7 20:16:28 2012
@@ -464,7 +464,8 @@
         <copy todir="${basedir}/temp" includeEmptyDirs="false">
             <fileset dir="${basedir}">
                 <include name="build.xml"/>
-                <include name="*.properties"/>
+                <include name="build.properties"/>
+				<include name="env-template.properties"/>
                 <include name="flex-sdk-description.xml"/>
                 <include name="KEYS"/>
                 <include name="CHANGES"/>
@@ -628,7 +629,7 @@
         <!-- delete file from source distro that are not in binary distro -->
 
         <delete dir="${basedir}/temp/">
-            <include name="*.properties"/>
+            <include name="build.properties"/>
             <include name="**/build.xml"/>
             <exclude name="asdoc/build.xml"/>
         </delete>