diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-14 01:08:13 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-14 01:08:13 +0000 |
commit | a03a59f46f8c30169f8530d687dde47d5244259c (patch) | |
tree | ec8b23d6b9251ec2410138db8a4a389622a90143 /install-sh | |
parent | d53d42de646acbff4ba9900f1b53c4e2f310ca84 (diff) | |
download | gcc-a03a59f46f8c30169f8530d687dde47d5244259c.tar.gz |
2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
* COPYING, compile, config-ml.in, config.guess,
config.sub, install-sh, missing, mkinstalldirs,
symlink-tree, ylwrap: Sync from upstream sources.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102001 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'install-sh')
-rwxr-xr-x | install-sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install-sh b/install-sh index 6ebe46de6cf..4d4a9519eaf 100755 --- a/install-sh +++ b/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2004-12-17.09 +scriptversion=2005-05-14.22 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -109,7 +109,7 @@ while test -n "$1"; do shift continue;; - --help) echo "$usage"; exit 0;; + --help) echo "$usage"; exit $?;; -m) chmodcmd="$chmodprog $2" shift @@ -134,7 +134,7 @@ while test -n "$1"; do shift continue;; - --version) echo "$0 $scriptversion"; exit 0;; + --version) echo "$0 $scriptversion"; exit $?;; *) # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. |