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 | bfeb478032164121c8403c1a5fc375123d7ce66f (patch) | |
| tree | a740615b97bea8e6937569858527f2c054bc0634 /qpid/java | |
| parent | ae6390138c2fbffea69081e114f209538c2f2e6d (diff) | |
| download | qpid-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.xml | 5 |
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> |
