From 47ac198ecb3753727d685b7af01e64e2b99051b8 Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Wed, 23 Oct 2002 22:23:28 +0000 Subject: [PATCH] Handle correctly the classpath if multiple jars are passed as arguments. ; is the right path separator. PR: 13905 Reported by: vishy@borland.com (Vishy Kasar) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273455 13f79535-47bb-0310-9956-ffa450edef68 --- src/script/lcp.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/lcp.bat b/src/script/lcp.bat index 59c414a0f..3493b7a9e 100755 --- a/src/script/lcp.bat +++ b/src/script/lcp.bat @@ -7,7 +7,7 @@ shift :argCheck if ""%1""=="""" goto gotAllArgs -set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 +set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT%;%1 shift goto argCheck