diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2010-07-14 15:02:42 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2010-07-14 15:02:42 +0000 |
| commit | 4af167e4e256f18126b23d38ba6ecd43b098b451 (patch) | |
| tree | 05ec656f3108d180009d4e980a58296e66ff1a16 /java/module.xml | |
| parent | ab016673170a60e12fdb0aa0f87de813e4d0f4f0 (diff) | |
| download | qpid-python-4af167e4e256f18126b23d38ba6ecd43b098b451.tar.gz | |
QPID-2526 : Applied patch to module.xml that quotes LogMessage files for processing in GenerateLogMessages, allowing builds with spaces in the full path to work
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@964073 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/module.xml')
| -rw-r--r-- | java/module.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/module.xml b/java/module.xml index b750b3f793..76e6228e9b 100644 --- a/java/module.xml +++ b/java/module.xml @@ -748,12 +748,12 @@ qpid.name=${project.name} <pathconvert property="logmessages" refid="logmessages.path" - pathsep=" "/> + pathsep="' '"/> <echo message="logmessages is ${logmessages}"/> <java classname="org.apache.qpid.server.logging.GenerateLogMessages" fork="true" dir="${gentools.home}/src" failonerror="true"> - <arg line="${logmessages}"/> + <arg line="'${logmessages}'"/> <arg value="-j"/> <arg value="-o"/> <arg value="${generated.dir}"/> |
