Author: cos Date: Sat Feb 12 04:07:52 2011 New Revision: 1070021 URL: http://svn.apache.org/viewvc?rev=1070021&view=rev Log: HADOOP-7134. configure files that are generated as part of the released tarball need to have executable bit set. Contributed by Roman Shaposhnik
Modified: hadoop/common/trunk/CHANGES.txt hadoop/common/trunk/build.xml Modified: hadoop/common/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=1070021&r1=1070020&r2=1070021&view=diff ============================================================================== --- hadoop/common/trunk/CHANGES.txt (original) +++ hadoop/common/trunk/CHANGES.txt Sat Feb 12 04:07:52 2011 @@ -117,6 +117,9 @@ Release 0.22.0 - Unreleased HADOOP-6978. Adds support for NativeIO using JNI. (Todd Lipcon, Devaraj Das & Owen O'Malley via ddas) + HADOOP-7134. configure files that are generated as part of the released + tarball need to have executable bit set. (Roman Shaposhnik via cos) + IMPROVEMENTS HADOOP-6644. util.Shell getGROUPS_FOR_USER_COMMAND method name Modified: hadoop/common/trunk/build.xml URL: http://svn.apache.org/viewvc/hadoop/common/trunk/build.xml?rev=1070021&r1=1070020&r2=1070021&view=diff ============================================================================== --- hadoop/common/trunk/build.xml (original) +++ hadoop/common/trunk/build.xml Sat Feb 12 04:07:52 2011 @@ -1153,6 +1153,7 @@ <copy todir="${dist.dir}/" file="build.xml"/> + <chmod perm="ugo+x" file="${dist.dir}/src/native/configure"/> <chmod perm="ugo+x" type="file" parallel="false"> <fileset dir="${dist.dir}/bin"/> <fileset dir="${dist.dir}/src/contrib/"> @@ -1171,11 +1172,13 @@ <tarfileset dir="${build.dir}" mode="664"> <exclude name="${final.name}/bin/*" /> <exclude name="${final.name}/contrib/*/bin/*" /> + <exclude name="${final.name}/src/native/configure" /> <include name="${final.name}/**" /> </tarfileset> <tarfileset dir="${build.dir}" mode="755"> <include name="${final.name}/bin/*" /> <include name="${final.name}/contrib/*/bin/*" /> + <include name="${final.name}/src/native/configure" /> </tarfileset> </param.listofitems> </macro_tar>