From c5257beb082a74197e95fdd9cb6a7fb6d6d97534 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Mon, 16 Sep 2002 07:24:09 +0000 Subject: [PATCH] even more missing quotes. Add some indentation to reduce confusion on my side 8-) Submitted by: JonL White git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273326 13f79535-47bb-0310-9956-ffa450edef68 --- src/script/ant | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/script/ant b/src/script/ant index 2fd04852f..af8658d5d 100644 --- a/src/script/ant +++ b/src/script/ant @@ -18,7 +18,7 @@ fi # load user ant configuration if [ -f "$HOME/.antrc" ] ; then - . $HOME/.antrc + . "$HOME/.antrc" fi # OS specific support. $var _must_ be set to either true or false. @@ -103,7 +103,7 @@ fi # in rpm_mode get ant/optional/xml parser&api from JAVALIBDIR if $rpm_mode; then - JAVALIBDIR="/usr/share/java" + JAVALIBDIR=/usr/share/java for i in ant ant-optional jaxp_parser xml_apis do if [ -z "$LOCALCLASSPATH" ] ; then @@ -113,9 +113,8 @@ if $rpm_mode; then fi done -# in rpm mode ant/lib is in /usr/share/java/ant -ANT_LIB="${JAVALIBDIR}/ant" - + # in rpm mode ant/lib is in /usr/share/java/ant + ANT_LIB="${JAVALIBDIR}/ant" fi # add in the dependency .jar files in non-RPM mode (the default)