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 | 42bbbaff75078b2e3fc389be8f151870d1fbe919 (patch) | |
| tree | d661c35a1cdd28893d0a3d95d04fe57619a94d4d /qpid/java/broker-plugins | |
| parent | df6ce3a48d51ea2e3cbf51cb4d2364d3c9d83e1b (diff) | |
| download | qpid-python-42bbbaff75078b2e3fc389be8f151870d1fbe919.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@952863 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins')
| -rw-r--r-- | qpid/java/broker-plugins/experimental/slowconsumerdetection/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/qpid/java/broker-plugins/experimental/slowconsumerdetection/build.xml b/qpid/java/broker-plugins/experimental/slowconsumerdetection/build.xml index aee7162400..4893de6886 100644 --- a/qpid/java/broker-plugins/experimental/slowconsumerdetection/build.xml +++ b/qpid/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}" /> |
