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 2007/08/29 23:31:38 UTC

svn commit: r570935 - in /lucene/hadoop/trunk: CHANGES.txt build.xml

Author: cutting
Date: Wed Aug 29 14:31:38 2007
New Revision: 570935

URL: http://svn.apache.org/viewvc?rev=570935&view=rev
Log:
HADOOP-1803.  Generalize build.xml to make files in all src/contrib/*/bin directories executable.  Contributed by stack.

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

Modified: lucene/hadoop/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?rev=570935&r1=570934&r2=570935&view=diff
==============================================================================
--- lucene/hadoop/trunk/CHANGES.txt (original)
+++ lucene/hadoop/trunk/CHANGES.txt Wed Aug 29 14:31:38 2007
@@ -124,6 +124,9 @@
     HADOOP-1750.  Log standard output and standard error when forking
     task processes.  (omalley via cutting)
 
+    HADOOP-1803.  Generalize build.xml to make files in all
+    src/contrib/*/bin directories executable.  (stack via cutting)
+
 Release 0.14.1 - (unreleased)
 
   BUG FIXES

Modified: lucene/hadoop/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/build.xml?rev=570935&r1=570934&r2=570935&view=diff
==============================================================================
--- lucene/hadoop/trunk/build.xml (original)
+++ lucene/hadoop/trunk/build.xml Wed Aug 29 14:31:38 2007
@@ -705,7 +705,9 @@
 
     <chmod perm="ugo+x" type="file">
         <fileset dir="${dist.dir}/bin"/>
-        <fileset dir="${dist.dir}/src/contrib/ec2/bin"/>
+        <fileset dir="${dist.dir}/src/contrib/">
+          <include name="*/bin/*" />
+        </fileset>
         <fileset dir="${dist.dir}/src/contrib/ec2/bin/image"/>
     </chmod>