Browse Source

HADOOP-1803. Generalize build.xml to make files in all src/contrib/*/bin directories executable. Contributed by stack.

git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@570935 13f79535-47bb-0310-9956-ffa450edef68
Doug Cutting 18 years ago
parent
commit
dcdee4904e
2 changed files with 6 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 3 1
      build.xml

+ 3 - 0
CHANGES.txt

@@ -124,6 +124,9 @@ Trunk (unreleased changes)
     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

+ 3 - 1
build.xml

@@ -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>