Author: mbenson
Date: Wed Oct 29 08:43:48 2008
New Revision: 708923
URL: http://svn.apache.org/viewvc?rev=708923&view=rev
Log:
use copy not copypath
Modified:
ant/core/trunk/fetch.xml
Modified: ant/core/trunk/fetch.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/fetch.xml?rev=708923&r1=708922&r2=708923&view=diff
==============================================================================
--- ant/core/trunk/fetch.xml (original)
+++ ant/core/trunk/fetch.xml Wed Oct 29 08:43:48 2008
@@ -115,9 +115,10 @@
</artifact:dependencies>
<!-- now we are left with the problem of getting the files
into our directory -->
- <copypath destdir="${dest.dir}" pathref="@{archive}.path">
+ <copy todir="${dest.dir}">
+ <path refid="@{archive}.path" />
<flattenmapper/>
- </copypath>
+ </copy>
</sequential>
</macrodef>
</target>