svn commit: r14888 - trunk/build.xml
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: linus
Date: 2008-06-08 14:56:02-0700
New Revision: 14888
Modified:
trunk/build.xml
Log:
Always use / when stating class paths in the manifest.
Modified: trunk/build.xml
Url: http://argouml.tigris.org/source/browse/argouml/trunk/build.xml?view=diff&rev=14888&p1=trunk/build.xml&p2=trunk/build.xml&r1=14887&r2=14888
==============================================================================
--- trunk/build.xml (original)
+++ trunk/build.xml 2008-06-08 14:56:02-0700
@@ -67,7 +67,7 @@
<pathconvert pathsep=" " property="cp" refid="classpath.jars" >
<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${file.separator}*"/>
+ <globmapper from="${basedir}${file.separator}${build.dir}${file.separator}ext${file.separator}*" to="ext/*"/>
</mapper>
</pathconvert>
<echo message="Class-Path: ${cp}" file="${build.dir}/${manifest.update}" />