diff options
author | Roland McGrath <roland@gnu.org> | 1999-03-20 22:03:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-03-20 22:03:03 +0000 |
commit | 040f5747150a2e972aea90ac084991e8e512b9af (patch) | |
tree | 321437506818e6ca2594e6cdda42f04891bd428a /mig.in | |
parent | dfcf532bcec08c113c3c24b57fc48f673407665a (diff) | |
download | mig-040f5747150a2e972aea90ac084991e8e512b9af.tar.gz mig-040f5747150a2e972aea90ac084991e8e512b9af.tar.bz2 mig-040f5747150a2e972aea90ac084991e8e512b9af.zip |
1999-03-20 Roland McGrath <roland@baalperazim.frob.com>
* mig.in (PACKAGE, VERSION): New variables, substituted by configure.
Grok --version.
Diffstat (limited to 'mig.in')
-rw-r--r-- | mig.in | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -25,6 +25,9 @@ # the rights to redistribute these changes. # +PACKAGE=@PACKAGE@ +VERSION=@VERSION@ + prefix=@prefix@ exec_prefix=@exec_prefix@ libexecdir=@libexecdir@ @@ -45,6 +48,8 @@ files= until [ $# -eq 0 ] do case "$1" in + --version ) echo "GNU ${PACKAGE} version ${VERSION}"; exit 0 ;; + -[qQvVtTrRsS] ) migflags="$migflags $1"; shift;; -i ) sawI=1; migflags="$migflags $1 $2"; shift; shift;; -user ) user="$2"; if [ ! "${sawI-}" ]; then migflags="$migflags $1 $2"; fi; shift; shift;; |