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:
parent
bb2f967b8b
commit
58ed6ab095
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue