diff options
| author | Robert Gemmell <robbie@apache.org> | 2010-06-08 23:25:09 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2010-06-08 23:25:09 +0000 |
| commit | 17fe96a9570f706cfbf009a3d9e2d74c42fd31b2 (patch) | |
| tree | 46b237ba66171dab1c3f4728d2a6a4eb123dda72 /java | |
| parent | 7fbf5db8c1e40f4766b90471795c5b17803993cd (diff) | |
| download | qpid-python-17fe96a9570f706cfbf009a3d9e2d74c42fd31b2.tar.gz | |
QPID-2526: split command into quoted arguments to allow building with spaces in path
Applied patch from Emmanuel Bourg <ebourg@apache.org>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@952863 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/broker-plugins/experimental/slowconsumerdetection/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/java/broker-plugins/experimental/slowconsumerdetection/build.xml b/java/broker-plugins/experimental/slowconsumerdetection/build.xml index aee7162400..4893de6886 100644 --- a/java/broker-plugins/experimental/slowconsumerdetection/build.xml +++ b/java/broker-plugins/experimental/slowconsumerdetection/build.xml @@ -57,7 +57,13 @@ nn - or more contributor license agreements. See the NOTICE file <target name="gen_logging" depends="check_velocity_deps" unless="velocity.notRequired"> <mkdir dir="${generated.dir}"/> <java classname="org.apache.qpid.server.logging.GenerateLogMessages" fork="true" dir="${gentools.home}/src" failonerror="true"> - <arg line="-j -o ${generated.dir} -t ${project.root}/broker/src/velocity/templates/org/apache/qpid/server/logging/messages -r org.apache.qpid.server.virtualhost.plugin.logging.LogMessages"/> + <arg value="-j"/> + <arg value="-o"/> + <arg value="${generated.dir}"/> + <arg value="-t"/> + <arg value="${project.root}/broker/src/velocity/templates/org/apache/qpid/server/logging/messages"/> + <arg value="-r"/> + <arg value="org.apache.qpid.server.virtualhost.plugin.logging.LogMessages"/> <classpath> <pathelement path="${project.root}/broker-plugins/experimental/slowconsumerdetection/src/main/java"/> <pathelement path="${velocity.compile.dir}" /> |
