diff options
Diffstat (limited to 'Master/bin/x86_64-solaris')
-rwxr-xr-x | Master/bin/x86_64-solaris/fmtutil | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/bin/x86_64-solaris/fmtutil b/Master/bin/x86_64-solaris/fmtutil index a61004f30ea..e3262e4737e 100755 --- a/Master/bin/x86_64-solaris/fmtutil +++ b/Master/bin/x86_64-solaris/fmtutil @@ -59,7 +59,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' progname=fmtutil argv0=$0 -version='$Id: fmtutil 19225 2010-07-04 12:26:44Z preining $' +version='$Id: fmtutil 23149 2011-06-27 21:32:19Z karl $' cnf=fmtutil.cnf # name of the config file export PATH @@ -142,7 +142,7 @@ eof cleanup 0 } -version() +versionfunc() { cat <<eof $progname version $version @@ -433,7 +433,7 @@ main() fullfmt=$1; shift case $fullfmt in ""|--help) help ;; - --version) version ;; + --version) versionfunc ;; --*) abort "unknown option $fullfmt, try --help" ;; *.fmt|*.mem|*.base) set x --byfmt `echo $fullfmt | sed 's@\.[a-z]*$@@'` ${1+"$@"} @@ -512,7 +512,7 @@ main() case "$cmd" in "") abort "missing command; try $progname --help if you need it";; help) help;; - version) version;; + version) versionfunc;; esac if test -n "$cfgparam"; then |