Author: jdcasey
Date: Mon Dec 15 15:46:04 2008
New Revision: 726877
URL: http://svn.apache.org/viewvc?rev=726877&view=rev
Log:
attempting to fix problems with tmpdir being interpreted as relative path by
scm plugin (out of the blue, it seems).
Modified:
maven/components/branches/maven-2.0.10-RC/build.xml
Modified: maven/components/branches/maven-2.0.10-RC/build.xml
URL:
http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.10-RC/build.xml?rev=726877&r1=726876&r2=726877&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.10-RC/build.xml (original)
+++ maven/components/branches/maven-2.0.10-RC/build.xml Mon Dec 15 15:46:04 2008
@@ -275,7 +275,7 @@
<target name="with-its" depends="all,run-its"/>
<target name="set-temp-maven-home" depends="read-poms">
- <property name="maven.home"
value="${java.io.tmpdir}/apache-maven-${pom.version}"/>
+ <property name="maven.home"
value="${java.io.tmpdir}${file.separator}apache-maven-${pom.version}"/>
<echo>Using temporary maven install directory: ${maven.home}</echo>
</target>