summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2012-07-12 17:53:19 +0000
committerKeith Wall <kwall@apache.org>2012-07-12 17:53:19 +0000
commitbfeb478032164121c8403c1a5fc375123d7ce66f (patch)
treea740615b97bea8e6937569858527f2c054bc0634 /qpid/java
parentae6390138c2fbffea69081e114f209538c2f2e6d (diff)
downloadqpid-python-bfeb478032164121c8403c1a5fc375123d7ce66f.tar.gz
QPID-4114: broker release now includes BDB if optional=true sys property is set
Applied patch from Phil Harvey <phil@philharveyonline.com>. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1360831 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker/build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/java/broker/build.xml b/qpid/java/broker/build.xml
index 28e95fcb64..938066728e 100644
--- a/qpid/java/broker/build.xml
+++ b/qpid/java/broker/build.xml
@@ -82,7 +82,10 @@
<target name="check-bdbstore-requested">
<condition property="bdbstore-requested">
- <contains string="${modules.opt}" substring="bdbstore"/>
+ <or>
+ <contains string="${modules.opt}" substring="bdbstore"/>
+ <istrue value="${optional}"/>
+ </or>
</condition>
</target>