git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@704943 13f79535-47bb-0310-9956-ffa450edef68master
@@ -104,6 +104,7 @@ Gerrit Riessen | |||||
Glenn McAllister | Glenn McAllister | ||||
Glenn Twiggs | Glenn Twiggs | ||||
Greg Nelson | Greg Nelson | ||||
Günther Kögel | |||||
Harish Prabandham | Harish Prabandham | ||||
Haroon Rafique | Haroon Rafique | ||||
Hiroaki Nakamura | Hiroaki Nakamura | ||||
@@ -253,6 +253,10 @@ Fixed bugs: | |||||
fails). | fails). | ||||
Bugzilla Report 45028. | Bugzilla Report 45028. | ||||
* the Unix "ant" wrapper script failed to protect wildcards in | |||||
command line arguments in some cases. | |||||
Bugzilla Report 31601. | |||||
Other changes: | Other changes: | ||||
-------------- | -------------- | ||||
@@ -441,6 +441,10 @@ | |||||
<first>Greg</first> | <first>Greg</first> | ||||
<last>Nelson</last> | <last>Nelson</last> | ||||
</name> | </name> | ||||
<name> | |||||
<first>Günther</first> | |||||
<last>Kögel</last> | |||||
</name> | |||||
<name> | <name> | ||||
<first>Harish</first> | <first>Harish</first> | ||||
<last>Prabandham</last> | <last>Prabandham</last> | ||||
@@ -319,8 +319,8 @@ else | |||||
ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\"" | ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\"" | ||||
fi | fi | ||||
fi | fi | ||||
ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\" -Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS -cp \"$CLASSPATH\" $ant_exec_args" | |||||
ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\" -Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS -cp \"$CLASSPATH\"" | |||||
if $ant_exec_debug ; then | if $ant_exec_debug ; then | ||||
echo $ant_exec_command | |||||
echo $ant_exec_command $ant_exec_args | |||||
fi | fi | ||||
eval $ant_exec_command | |||||
eval $ant_exec_command "$ant_exec_args" |