Author: pkosiorowski
Date: Wed Aug 17 03:00:37 2005
New Revision: 233147
URL: http://svn.apache.org/viewcvs?rev=233147&view=rev
Log:
Setting executable bit for shell scripts.
Modified:
lucene/nutch/trunk/build.xml
Modified: lucene/nutch/trunk/build.xml
URL:
http://svn.apache.org/viewcvs/lucene/nutch/trunk/build.xml?rev=233147&r1=233146&r2=233147&view=diff
==============================================================================
--- lucene/nutch/trunk/build.xml (original)
+++ lucene/nutch/trunk/build.xml Wed Aug 17 03:00:37 2005
@@ -420,12 +420,16 @@
<target name="tar" depends="package">
<tar compression="gzip" longfile="gnu"
destfile="${build.dir}/${final.name}.tar.gz">
- <tarfileset dir="${build.dir}">
+ <tarfileset dir="${build.dir}" mode="664">
+ <exclude name="${final.name}/bin/*" />
<include name="${final.name}/**" />
</tarfileset>
+ <tarfileset dir="${build.dir}" mode="755">
+ <include name="${final.name}/bin/*" />
+ </tarfileset>
</tar>
</target>
-
+
<!-- ================================================================== -->
<!-- Clean. Delete the build files, and their directories -->
<!-- ================================================================== -->