From dbaa04a088e486c2b1784e24e294bb415d205f2e Mon Sep 17 00:00:00 2001
From: al_xipe <al_xipe@localhost>
Date: Fri, 11 May 2007 02:56:13 +0000
Subject: [PATCH] fix for classpath on windows
---
opends/tests/gui-tests/build.xml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/tests/gui-tests/build.xml b/opends/tests/gui-tests/build.xml
index d0789f8..0e9d861 100644
--- a/opends/tests/gui-tests/build.xml
+++ b/opends/tests/gui-tests/build.xml
@@ -35,8 +35,8 @@
<property name="product.name"
value="${SHORT_NAME}-${MAJOR_VERSION}.${MINOR_VERSION}"/>
<property name="pkg.path"
- value="${project.home}/build/package/${product.name}.zip"/>
- <property name="instance.path" value="${basedir}/${product.name}"/>
+ value="${project.home}${file.separator}build${file.separator}package${file.separator}${product.name}.zip"/>
+ <property name="instance.path" value="${basedir}${file.separator}${product.name}"/>
<!-- Abbot properties -->
<property name="abbot.version" value="1.0.0.rc5"/>
@@ -131,7 +131,7 @@
</condition>
</target>
- <target name="set-proxy" depends="check-proxy" if="proxy.enabled" >
+ <target name="set-proxy" depends="check-proxy" if="proxy.enabled">
<echo>Proxy detected. Configuring.</echo>
<setproxy
proxyhost="${proxy.host}"
--
Gitblit v1.10.0