summaryrefslogtreecommitdiff
path: root/java/broker/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/broker/build.xml')
-rw-r--r--java/broker/build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/java/broker/build.xml b/java/broker/build.xml
index 9e8bf12f18..938066728e 100644
--- a/java/broker/build.xml
+++ b/java/broker/build.xml
@@ -33,7 +33,6 @@
<property name="qmf.output.dir" value="${module.precompiled}/org/apache/qpid/qmf/schema"/>
<property name="qmf.output.file" value="BrokerSchema.java"/>
-
<target name="precompile" depends="gen_logging,gen_qmf"/>
<target name="check_qmf_deps">
@@ -83,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>