diff options
author | Simon Pepping <spepping@apache.org> | 2005-10-29 20:27:21 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2005-10-29 20:27:21 +0000 |
commit | 86519341595e0d55d752a7df68dfc1953461fa8d (patch) | |
tree | 98d3b82fa20bafd9d874134f9432aed77979b1da /fop | |
parent | 2e64218dd6951a907a59548127cab537148df7b1 (diff) | |
download | xmlgraphics-fop-86519341595e0d55d752a7df68dfc1953461fa8d.tar.gz xmlgraphics-fop-86519341595e0d55d752a7df68dfc1953461fa8d.zip |
Changed ant to fop. Added -h to command line for --help script option.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@329473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop')
-rwxr-xr-x | fop | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -28,6 +28,7 @@ for arg in "$@" ; do fop_exec_debug=true elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then show_help=true + fop_exec_args="$fop_exec_args -h" else if [ my"$arg" = my"-h" -o my"$arg" = my"-help" ] ; then show_help=true @@ -36,16 +37,16 @@ for arg in "$@" ; do fi done -# Source/default ant configuration +# Source/default fop configuration if $no_config ; then rpm_mode=false else - # load system-wide ant configuration + # load system-wide fop configuration if [ -f "/etc/fop.conf" ] ; then . /etc/fop.conf fi - # load user ant configuration + # load user fop configuration if [ -f "$HOME/.fop/fop.conf" ] ; then . $HOME/.fop/fop.conf fi |