diff options
| author | Keith Wall <kwall@apache.org> | 2012-07-12 17:53:19 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2012-07-12 17:53:19 +0000 |
| commit | 9fe65b2e9e2c97cb28d6cfd934f9157a31f4d2c1 (patch) | |
| tree | fc56bd0d1073244553ba1c66a27cf258960c966c /java | |
| parent | 38c28485ec354e20c5d5365ed34ca2076177e5ef (diff) | |
| download | qpid-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.xml | 5 |
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> |
