Author: rajith
Date: Tue Dec 1 00:38:28 2009
New Revision: 885633
URL: http://svn.apache.org/viewvc?rev=885633&view=rev
Log:
Modified the script to use absoulte paths when creating the classpath as
relative paths could create issues when running the script in automated build
environments.
Modified:
qpid/trunk/qpid/java/testkit/bin/setenv.sh
Modified: qpid/trunk/qpid/java/testkit/bin/setenv.sh
URL:
http://svn.apache.org/viewvc/qpid/trunk/qpid/java/testkit/bin/setenv.sh?rev=885633&r1=885632&r2=885633&view=diff
==============================================================================
--- qpid/trunk/qpid/java/testkit/bin/setenv.sh (original)
+++ qpid/trunk/qpid/java/testkit/bin/setenv.sh Tue Dec 1 00:38:28 2009
@@ -42,7 +42,8 @@
fi
if [ "$QP_CP" = "" ] ; then
- QP_CP=`find ../../build/lib/ -name '*.jar' | tr '\n' ':'`
+ QP_JAR_PATH=`abs_path "../../build/lib/"`
+ QP_CP=`find $QP_JAR_PATH -name '*.jar' | tr '\n' ':'`
fi
if [ "$OUTDIR" = "" ] ; then
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]