Author: nigel Date: Wed Jan 9 08:45:41 2008 New Revision: 610450 URL: http://svn.apache.org/viewvc?rev=610450&view=rev Log: HADOOP-2537. Make build process compatible with Ant 1.7.0. Contributed by Hrishikesh.
Modified: lucene/hadoop/trunk/CHANGES.txt lucene/hadoop/trunk/build.xml Modified: lucene/hadoop/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?rev=610450&r1=610449&r2=610450&view=diff ============================================================================== --- lucene/hadoop/trunk/CHANGES.txt (original) +++ lucene/hadoop/trunk/CHANGES.txt Wed Jan 9 08:45:41 2008 @@ -375,6 +375,9 @@ HADOOP-2446. Fixes TestHDFSServerPorts and TestMRServerPorts so they do not rely on statically configured ports and cleanup better. (nigel) + HADOOP-2537. Make build process compatible with Ant 1.7.0. + (Hrishikesh via nigel) + Release 0.15.2 - 2008-01-02 BUG FIXES Modified: lucene/hadoop/trunk/build.xml URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/build.xml?rev=610450&r1=610449&r2=610450&view=diff ============================================================================== --- lucene/hadoop/trunk/build.xml (original) +++ lucene/hadoop/trunk/build.xml Wed Jan 9 08:45:41 2008 @@ -148,11 +148,12 @@ <mkdir dir="${test.build.dir}"/> <mkdir dir="${test.build.classes}"/> <mkdir dir="${test.build.testjar}"/> - <touch millis="0"> + <tempfile property="touch.temp.file" destDir="${java.io.tmpdir}"/> + <touch millis="0" file="${touch.temp.file}"> <fileset dir="${conf.dir}" includes="**/*.template"/> <fileset dir="${contrib.dir}" includes="**/*.template"/> </touch> - + <delete file="${touch.temp.file}"/> <!-- copy all of the jsp and static files --> <copy todir="${build.webapps}"> <fileset dir="${src.webapps}">