Author: mattf
Date: Thu Nov 10 01:08:00 2011
New Revision: 1200078

URL: http://svn.apache.org/viewvc?rev=1200078&view=rev
Log:
MAPREDUCE-3374. src/c++/task-controller/configure is not set executable in the 
tarball and that prevents task-controller from rebuilding. Contributed by Roman 
Shaposhnik.

Modified:
    hadoop/common/branches/branch-0.20-security-205/CHANGES.txt
    hadoop/common/branches/branch-0.20-security-205/build.xml

Modified: hadoop/common/branches/branch-0.20-security-205/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-205/CHANGES.txt?rev=1200078&r1=1200077&r2=1200078&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-205/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20-security-205/CHANGES.txt Thu Nov 10 
01:08:00 2011
@@ -33,6 +33,10 @@ Release 0.20.205.1 - unreleased
 
   BUG FIXES
 
+    MAPREDUCE-3374. src/c++/task-controller/configure is not set executable in 
+    the tarball and that prevents task-controller from rebuilding. 
+    (Roman Shaposhnik via Matt Foley)
+
     HDFS-1943. Fail to start datanode while start-dfs.sh is executed by root
     user. (Wei Yongjun's patch updated by Matt Foley)
 

Modified: hadoop/common/branches/branch-0.20-security-205/build.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-205/build.xml?rev=1200078&r1=1200077&r2=1200078&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-205/build.xml (original)
+++ hadoop/common/branches/branch-0.20-security-205/build.xml Thu Nov 10 
01:08:00 2011
@@ -2621,8 +2621,9 @@
       <arg value="-i"/>
     </exec>
     <mkdir dir="${build.c++.task-controller}" />
-    <exec executable="${c++.task-controller.src}/configure"
+    <exec executable="/bin/sh"
           dir="${build.c++.task-controller}">
+      <arg value="${c++.task-controller.src}/configure"/>
       <arg value="--prefix=${task-controller.prefix.dir}"/>
       <env key="CFLAGS" 
            value="-DHADOOP_CONF_DIR=${hadoop.conf.dir}"/>


Reply via email to