Author: asavu
Date: Mon Feb 20 21:54:32 2012
New Revision: 1291473

URL: http://svn.apache.org/viewvc?rev=1291473&view=rev
Log:
WHIRR-495. bin/whirr is does not have executable permissions in the 0.7.0 
pre-built download (asavu)

Modified:
    whirr/branches/branch-0.7/CHANGES.txt
    whirr/branches/branch-0.7/build-tools/src/assemble-bin.xml
    whirr/branches/branch-0.7/build-tools/src/assemble-src.xml

Modified: whirr/branches/branch-0.7/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/whirr/branches/branch-0.7/CHANGES.txt?rev=1291473&r1=1291472&r2=1291473&view=diff
==============================================================================
--- whirr/branches/branch-0.7/CHANGES.txt (original)
+++ whirr/branches/branch-0.7/CHANGES.txt Mon Feb 20 21:54:32 2012
@@ -17,6 +17,9 @@ Release 0.7.1
     WHIRR-490. hadoop-mapreduce.mapred.child.ulimit should be 
     unlimited by default (asavu)
 
+    WHIRR-495. bin/whirr is does not have executable permissions 
+    in the 0.7.0 pre-built download (asavu)
+
 Release 0.7.0 - 2011-12-11
 
   NEW FEATURES

Modified: whirr/branches/branch-0.7/build-tools/src/assemble-bin.xml
URL: 
http://svn.apache.org/viewvc/whirr/branches/branch-0.7/build-tools/src/assemble-bin.xml?rev=1291473&r1=1291472&r2=1291473&view=diff
==============================================================================
--- whirr/branches/branch-0.7/build-tools/src/assemble-bin.xml (original)
+++ whirr/branches/branch-0.7/build-tools/src/assemble-bin.xml Mon Feb 20 
21:54:32 2012
@@ -56,11 +56,23 @@
         <exclude>**/*.iml</exclude>
         <exclude>**/*.ipr</exclude>
         <exclude>**/*.iws</exclude>
+        <exclude>bin/**</exclude>
       </excludes>
     </fileSet>
     <fileSet>
       <directory>${project.build.directory}/site</directory>
+      <useDefaultExcludes>true</useDefaultExcludes>
       <outputDirectory>docs</outputDirectory>
     </fileSet>
+    <fileSet>
+      <directory>bin</directory>
+      <outputDirectory>bin</outputDirectory>
+      <includes>
+        <include>**</include>
+      </includes>
+      <lineEnding>unix</lineEnding>
+      <fileMode>0755</fileMode>
+      <directoryMode>0755</directoryMode>
+    </fileSet>
   </fileSets>
 </assembly>

Modified: whirr/branches/branch-0.7/build-tools/src/assemble-src.xml
URL: 
http://svn.apache.org/viewvc/whirr/branches/branch-0.7/build-tools/src/assemble-src.xml?rev=1291473&r1=1291472&r2=1291473&view=diff
==============================================================================
--- whirr/branches/branch-0.7/build-tools/src/assemble-src.xml (original)
+++ whirr/branches/branch-0.7/build-tools/src/assemble-src.xml Mon Feb 20 
21:54:32 2012
@@ -42,8 +42,19 @@
         <exclude>**/*.iml</exclude>
         <exclude>**/*.ipr</exclude>
         <exclude>**/*.iws</exclude>
+        <exclude>bin/**</exclude>
       </excludes>
     </fileSet>
+    <fileSet>
+      <directory>bin</directory>
+      <outputDirectory>bin</outputDirectory>
+      <includes>
+        <include>**</include>
+      </includes>
+      <lineEnding>unix</lineEnding>
+      <fileMode>0755</fileMode>
+      <directoryMode>0755</directoryMode>
+    </fileSet>
   </fileSets>
   <files>
     <file>


Reply via email to