HADOOP-7134. configure files that are generated as part of the released tarball need to have executable bit set. Contributed by Roman Shaposhnik

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1070021 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Konstantin Boudnik 2011-02-12 04:07:52 +00:00
parent bb2f967b8b
commit 58ed6ab095
2 changed files with 6 additions and 0 deletions

View File

@ -117,6 +117,9 @@ Release 0.22.0 - Unreleased
HADOOP-6978. Adds support for NativeIO using JNI. HADOOP-6978. Adds support for NativeIO using JNI.
(Todd Lipcon, Devaraj Das & Owen O'Malley via ddas) (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 IMPROVEMENTS
HADOOP-6644. util.Shell getGROUPS_FOR_USER_COMMAND method name HADOOP-6644. util.Shell getGROUPS_FOR_USER_COMMAND method name

View File

@ -1153,6 +1153,7 @@
<copy todir="${dist.dir}/" file="build.xml"/> <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"> <chmod perm="ugo+x" type="file" parallel="false">
<fileset dir="${dist.dir}/bin"/> <fileset dir="${dist.dir}/bin"/>
<fileset dir="${dist.dir}/src/contrib/"> <fileset dir="${dist.dir}/src/contrib/">
@ -1171,11 +1172,13 @@
<tarfileset dir="${build.dir}" mode="664"> <tarfileset dir="${build.dir}" mode="664">
<exclude name="${final.name}/bin/*" /> <exclude name="${final.name}/bin/*" />
<exclude name="${final.name}/contrib/*/bin/*" /> <exclude name="${final.name}/contrib/*/bin/*" />
<exclude name="${final.name}/src/native/configure" />
<include name="${final.name}/**" /> <include name="${final.name}/**" />
</tarfileset> </tarfileset>
<tarfileset dir="${build.dir}" mode="755"> <tarfileset dir="${build.dir}" mode="755">
<include name="${final.name}/bin/*" /> <include name="${final.name}/bin/*" />
<include name="${final.name}/contrib/*/bin/*" /> <include name="${final.name}/contrib/*/bin/*" />
<include name="${final.name}/src/native/configure" />
</tarfileset> </tarfileset>
</param.listofitems> </param.listofitems>
</macro_tar> </macro_tar>