diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-09-30 13:38:04 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-09-30 13:38:04 +0000 |
| commit | c6a295b5d8f7a8689e285d2280e02e59fb108206 (patch) | |
| tree | 512ae4215e67b1b91f807fad23ce5aab86ce9d23 /qpid/java | |
| parent | 3b3551e4c56315f0192ff1de4fb183826fccf954 (diff) | |
| download | qpid-python-c6a295b5d8f7a8689e285d2280e02e59fb108206.tar.gz | |
QPID-3504: make the broker start script check for additional jar files in lib/opt/ to add to its classpath using the JDK 6 classpath expansion convenience, enabling an easier way of adding the optional BDB JE jar dependency than via the existing -run:<option> classpath manipulations
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1177656 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rwxr-xr-x | qpid/java/broker/bin/qpid-server | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/broker/bin/qpid-server b/qpid/java/broker/bin/qpid-server index 90b11da202..8814824e66 100755 --- a/qpid/java/broker/bin/qpid-server +++ b/qpid/java/broker/bin/qpid-server @@ -33,8 +33,8 @@ if [ -z "$QPID_PNAME" ]; then export QPID_PNAME=" -DPNAME=QPBRKR" fi -# Set classpath to include Qpid jar with all required jars in manifest -QPID_LIBS=$QPID_HOME/lib/qpid-all.jar +# Set classpath to include the qpid-all manifest jar, and any jars supplied in lib/opt +QPID_LIBS="$QPID_HOME/lib/qpid-all.jar:$QPID_HOME/lib/opt/*" # Set other variables used by the qpid-run script before calling export JAVA=java \ |
