You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by mi...@apache.org on 2013/10/17 14:08:11 UTC

svn commit: r1533056 - /jmeter/trunk/build.xml

Author: milamber
Date: Thu Oct 17 12:08:11 2013
New Revision: 1533056

URL: http://svn.apache.org/r1533056
Log:
Fix a issue for encoding license files for zip (encode to UTF-8 instead of ASCII)

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1533056&r1=1533055&r2=1533056&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Thu Oct 17 12:08:11 2013
@@ -1381,7 +1381,7 @@ run JMeter unless all the JMeter jars ar
         <property name="workdir" value="${dist.dir}/${eoltype}"/>
         <echo level="info">Converting work files to eol=${eoltype} in ${workdir}</echo>
         <mkdir dir="${workdir}"/>
-        <copy includeemptydirs="false" todir="${workdir}">
+        <copy includeemptydirs="false" todir="${workdir}" encoding="${encoding}">
             <fileset dir=".">
                 <patternset refid="${fileset}"/>
             </fileset>