[jboss-cvs] JBossAS SVN: r74376 - trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 11 05:19:25 EDT 2008


Author: dimitris at jboss.org
Date: 2008-06-11 05:19:25 -0400 (Wed, 11 Jun 2008)
New Revision: 74376

Modified:
   trunk/build/build.xml
Log:
JBAS-4355, avoid putting in the full library path on windows

Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml	2008-06-11 08:44:36 UTC (rev 74375)
+++ trunk/build/build.xml	2008-06-11 09:19:25 UTC (rev 74376)
@@ -825,13 +825,13 @@
     </path>
      
     <pathconvert property="client.jar.manifest.classpath" refid="client.jar.classpath"
-                 pathsep=" " dirsep="/">
-      <map from="${client.jar.dir}/" to="" />
+                 pathsep=" " dirsep="${file.separator}">
+      <map from="${client.jar.dir}${file.separator}" to="" />
     </pathconvert>
     
     <pathconvert property="client.jar.files" refid="client.jar.classpath" 
-                 pathsep="${line.separator}"  dirsep="/">
-      <map from="${client.jar.dir}/" to="" />
+                 pathsep="${line.separator}"  dirsep="${file.separator}">
+      <map from="${client.jar.dir}${file.separator}" to="" />
     </pathconvert>
     
     <mkdir dir="${module.output}/temp"/>




More information about the jboss-cvs-commits mailing list