You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cu...@apache.org on 2008/06/02 20:11:24 UTC

svn commit: r662504 - in /hadoop/core/trunk: CHANGES.txt build.xml

Author: cutting
Date: Mon Jun  2 11:11:24 2008
New Revision: 662504

URL: http://svn.apache.org/viewvc?rev=662504&view=rev
Log:
HADOOP-3477.  Fix build to to not package contrib/*/bin twice in distributions.  Contributed by Adam Heath.

Modified:
    hadoop/core/trunk/CHANGES.txt
    hadoop/core/trunk/build.xml

Modified: hadoop/core/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=662504&r1=662503&r2=662504&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Mon Jun  2 11:11:24 2008
@@ -365,6 +365,10 @@
 
     HADOOP-2669. DFSClient locks pendingCreates appropriately. (dhruba)
  
+    HADOOP-3477. Fix build to not package contrib/*/bin twice in
+    distributions.  (Adam Heath via cutting)
+
+
 Release 0.17.0 - 2008-05-18
 
   INCOMPATIBLE CHANGES

Modified: hadoop/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/build.xml?rev=662504&r1=662503&r2=662504&view=diff
==============================================================================
--- hadoop/core/trunk/build.xml (original)
+++ hadoop/core/trunk/build.xml Mon Jun  2 11:11:24 2008
@@ -854,6 +854,7 @@
       <param.listofitems>
         <tarfileset dir="${build.dir}" mode="664">
           <exclude name="${final.name}/bin/*" />
+          <exclude name="${final.name}/contrib/*/bin/*" />
           <exclude name="${final.name}/src/contrib/ec2/bin/*" />
           <exclude name="${final.name}/src/contrib/ec2/bin/image/*" />
           <include name="${final.name}/**" />