summaryrefslogtreecommitdiff
path: root/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
commit9fe65b2e9e2c97cb28d6cfd934f9157a31f4d2c1 (patch)
treefc56bd0d1073244553ba1c66a27cf258960c966c /java
parent38c28485ec354e20c5d5365ed34ca2076177e5ef (diff)
downloadqpid-python-9fe65b2e9e2c97cb28d6cfd934f9157a31f4d2c1.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/qpid@1360831 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/broker/build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/java/broker/build.xml b/java/broker/build.xml
index 28e95fcb64..938066728e 100644
--- a/java/broker/build.xml
+++ b/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>