summaryrefslogtreecommitdiff
path: root/missing
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2002-08-09 02:27:33 +0200
committerKevin Ryde <user42@zip.com.au>2002-08-09 02:27:33 +0200
commit10810222daf7d84b00958a9d87e63713aa07f554 (patch)
tree8732022e53554b2d6d2c71fbd8b2672c242d3423 /missing
parent682bf4bc35c6386cd2af5d9b7f52ae339cbf189f (diff)
downloadgmp-10810222daf7d84b00958a9d87e63713aa07f554.tar.gz
* */Makefile.in, aclocal.m4, configure, install-sh, missing,
mkinstalldirs: Update to automake 1.6.3.
Diffstat (limited to 'missing')
-rwxr-xr-xmissing10
1 files changed, 5 insertions, 5 deletions
diff --git a/missing b/missing
index dd583709f..6a37006e8 100755
--- a/missing
+++ b/missing
@@ -1,6 +1,6 @@
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
-# Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is free software; you can redistribute it and/or modify
@@ -293,23 +293,23 @@ WARNING: \`$1' is missing on your system. You should only need it if
# Look for gnutar/gtar before invocation to avoid ugly error
# messages.
if (gnutar --version > /dev/null 2>&1); then
- gnutar ${1+"$@"} && exit 0
+ gnutar "$@" && exit 0
fi
if (gtar --version > /dev/null 2>&1); then
- gtar ${1+"$@"} && exit 0
+ gtar "$@" && exit 0
fi
firstarg="$1"
if shift; then
case "$firstarg" in
*o*)
firstarg=`echo "$firstarg" | sed s/o//`
- tar "$firstarg" ${1+"$@"} && exit 0
+ tar "$firstarg" "$@" && exit 0
;;
esac
case "$firstarg" in
*h*)
firstarg=`echo "$firstarg" | sed s/h//`
- tar "$firstarg" ${1+"$@"} && exit 0
+ tar "$firstarg" "$@" && exit 0
;;
esac
fi