You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2012/07/03 20:15:50 UTC

svn commit: r1356855 - /nutch/branches/branch-1.5.1/build.xml

Author: lewismc
Date: Tue Jul  3 18:15:49 2012
New Revision: 1356855

URL: http://svn.apache.org/viewvc?rev=1356855&view=rev
Log:
NUTCH-1415-v2

Modified:
    nutch/branches/branch-1.5.1/build.xml

Modified: nutch/branches/branch-1.5.1/build.xml
URL: http://svn.apache.org/viewvc/nutch/branches/branch-1.5.1/build.xml?rev=1356855&r1=1356854&r2=1356855&view=diff
==============================================================================
--- nutch/branches/branch-1.5.1/build.xml (original)
+++ nutch/branches/branch-1.5.1/build.xml Tue Jul  3 18:15:49 2012
@@ -703,11 +703,11 @@
   <target name="tar-bin" depends="package-bin">
     <tar compression="gzip" longfile="gnu"
       destfile="${bin.dist.version.dir}.tar.gz">
-      <tarfileset dir="${bin.dist.version.dir}" mode="664">
+      <tarfileset dir="${bin.dist.version.dir}" mode="664" prefix="${final.name}">
 		<exclude name="bin/*" />
         <include name="**" />
       </tarfileset>
-      <tarfileset dir="${bin.dist.version.dir}" mode="755">
+      <tarfileset dir="${bin.dist.version.dir}" mode="755" prefix="${final.name}">
         <include name="bin/*" />
       </tarfileset>
     </tar>
@@ -735,11 +735,11 @@
   <target name="zip-bin" depends="package-bin">
    <zip compress="true" casesensitive="yes" 
      destfile="${bin.dist.version.dir}.zip">
-   <zipfileset dir="${bin.dist.version.dir}" filemode="664">
+   <zipfileset dir="${bin.dist.version.dir}" filemode="664" prefix="${final.name}">
        <exclude name="bin/*" />
        <include name="**" />
    </zipfileset>
-   <zipfileset dir="${bin.dist.version.dir}" filemode="755">
+   <zipfileset dir="${src.dist.version.dir}" filemode="755" prefix="${final.name}">
        <include name="bin/*" />
    </zipfileset>
    </zip>