From a954505a85aef39d25e6b0d2bf92fcf7e41b015f Mon Sep 17 00:00:00 2001
From: andrug <andrug@localhost>
Date: Fri, 04 Apr 2008 09:53:41 +0000
Subject: [PATCH] update following previous commit,Build Client in unique directory, avoid conflict if same client is run several time at the same time

---
 opendj-sdk/opends/tests/system-tests/clients/searchLoad/build.ksh |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opends/tests/system-tests/clients/searchLoad/build.ksh b/opendj-sdk/opends/tests/system-tests/clients/searchLoad/build.ksh
index 8e53100..6acf64c 100755
--- a/opendj-sdk/opends/tests/system-tests/clients/searchLoad/build.ksh
+++ b/opendj-sdk/opends/tests/system-tests/clients/searchLoad/build.ksh
@@ -26,10 +26,12 @@
 #      Copyright 2008 Sun Microsystems, Inc.
 
 export CLASSPATH=$CLASSPATH:../LDAPjdk/ldapjdk.jar
+mkdir -p $COMPILDIR
 echo "Compiling classes..."
-javac src/*.java -d .
+javac src/*.java -d $COMPILDIR
 [ $? -ne 0 ] && return 1
 echo "Creating jarfile"
+cd $COMPILDIR
 jar cvf search.jar *.class
 [ $? -ne 0 ] && return 1
 echo "Cleanup"

--
Gitblit v1.10.0