You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2012/09/01 03:44:11 UTC

svn commit: r1379684 - /incubator/flex/utilities/trunk/installer/build.xml

Author: bigosmallm
Date: Sat Sep  1 01:44:10 2012
New Revision: 1379684

URL: http://svn.apache.org/viewvc?rev=1379684&view=rev
Log:
Fixed issue with build script which caused the font and png files to get messed up.  

Modified:
    incubator/flex/utilities/trunk/installer/build.xml

Modified: incubator/flex/utilities/trunk/installer/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/trunk/installer/build.xml?rev=1379684&r1=1379683&r2=1379684&view=diff
==============================================================================
--- incubator/flex/utilities/trunk/installer/build.xml (original)
+++ incubator/flex/utilities/trunk/installer/build.xml Sat Sep  1 01:44:10 2012
@@ -308,13 +308,13 @@
 		
 		<copy file="${basedir}/READme" todir="${RELEASE_DIR}"/>
 		
-        <fixcrlf srcdir="${BUILD_DIR}/temp" eol="crlf"/>
+        <fixcrlf srcdir="${BUILD_DIR}/temp" eol="crlf" excludes="**/*.ttf,**/*.png"/>
 
         <mkdir dir="${RELEASE_DIR}"/>
         <zip destfile="${RELEASE_DIR}/${source.kit}.zip" 
             basedir="${BUILD_DIR}/temp"/>
         
-        <fixcrlf srcdir="${BUILD_DIR}/temp" eol="unix"/>
+        <fixcrlf srcdir="${BUILD_DIR}/temp" eol="unix" excludes="**/*.ttf,**/*.png"/>
 
         <tar destfile="${RELEASE_DIR}/${source.kit}.tar.gz" 
             compression="gzip"