svn commit: r14893 - trunk/build.xml
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dthompson
Date: 2008-06-09 12:18:49-0700
New Revision: 14893
Modified:
trunk/build.xml
Log:
Issue 5068: Corrected double entry classpaths in argouml.jar manifest updater.
Modified: trunk/build.xml
Url: http://argouml.tigris.org/source/browse/argouml/trunk/build.xml?view=diff&rev=14893&p1=trunk/build.xml&p2=trunk/build.xml&r1=14892&r2=14893
==============================================================================
--- trunk/build.xml (original)
+++ trunk/build.xml 2008-06-09 12:18:49-0700
@@ -64,10 +64,9 @@
<fileset dir="${build.dir}" id="classpath.jars" >
<include name="**/*.jar" />
</fileset>
- <pathconvert pathsep=" " property="cp" refid="classpath.jars" >
+ <pathconvert pathsep=" " property="cp" refid="classpath.jars" dirsep="/" >
<mapper>
- <globmapper from="${basedir}${file.separator}${build.dir}${file.separator}*" to="*"/>
- <globmapper from="${basedir}${file.separator}${build.dir}${file.separator}ext${file.separator}*" to="ext/*"/>
+ <globmapper from="${basedir}/${build.dir}/*" to="*" handledirsep="yes" />
</mapper>
</pathconvert>
<echo message="Class-Path: ${cp}" file="${build.dir}/${manifest.update}" />