Author: cdouglas
Date: Sat Feb 13 04:05:46 2010
New Revision: 909723
URL: http://svn.apache.org/viewvc?rev=909723&view=rev
Log:
HADOOP-5612. Some c++ scripts are not chmodded before ant execution.
Contributed by Todd Lipcon
Modified:
hadoop/common/branches/branch-0.20/CHANGES.txt
hadoop/common/branches/branch-0.20/build.xml
Modified: hadoop/common/branches/branch-0.20/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/CHANGES.txt?rev=909723&r1=909722&r2=909723&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20/CHANGES.txt Sat Feb 13 04:05:46 2010
@@ -7,6 +7,9 @@
MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via tomwhite)
+ HADOOP-5612. Some c++ scripts are not chmodded before ant execution.
+ (Todd Lipcon via tomwhite)
+
Release 0.20.2 - 2010-2-10
NEW FEATURES
Modified: hadoop/common/branches/branch-0.20/build.xml
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/build.xml?rev=909723&r1=909722&r2=909723&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/build.xml (original)
+++ hadoop/common/branches/branch-0.20/build.xml Sat Feb 13 04:05:46 2010
@@ -1411,6 +1411,7 @@
<target name="create-c++-utils-makefile" depends="check-c++-makefiles"
if="need.c++.utils.makefile">
<mkdir dir="${build.c++.utils}"/>
+ <chmod file="${c++.utils.src}/configure" perm="ugo+x"/>
<exec executable="${c++.utils.src}/configure" dir="${build.c++.utils}"
failonerror="yes">
<arg value="--prefix=${install.c++}"/>
@@ -1428,6 +1429,7 @@
<target name="create-c++-pipes-makefile" depends="check-c++-makefiles"
if="need.c++.pipes.makefile">
<mkdir dir="${build.c++.pipes}"/>
+ <chmod file="${c++.pipes.src}/configure" perm="ugo+x"/>
<exec executable="${c++.pipes.src}/configure" dir="${build.c++.pipes}"
failonerror="yes">
<arg value="--prefix=${install.c++}"/>
@@ -1450,6 +1452,7 @@
depends="check-c++-makefiles"
if="need.c++.examples.pipes.makefile">
<mkdir dir="${build.c++.examples.pipes}"/>
+ <chmod file="${c++.examples.pipes.src}/configure" perm="ugo+x"/>
<exec executable="${c++.examples.pipes.src}/configure"
dir="${build.c++.examples.pipes}"
failonerror="yes">