diff options
author | Greg McGary <greg@mcgary.org> | 1999-03-02 23:57:48 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1999-03-02 23:57:48 +0000 |
commit | 5ede67919d924eef3bc5d672ea58b4389449c114 (patch) | |
tree | 11b35f5b556978d8234f40c63be5f9edc02b52c6 /install-sh | |
parent | 8837f62020717398a3d62bd8095da5dcbb0fb78a (diff) | |
download | idutils-5ede67919d924eef3bc5d672ea58b4389449c114.tar.gz idutils-5ede67919d924eef3bc5d672ea58b4389449c114.tar.bz2 idutils-5ede67919d924eef3bc5d672ea58b4389449c114.zip |
.
Diffstat (limited to 'install-sh')
-rwxr-xr-x | install-sh | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -1,15 +1,27 @@ #!/bin/sh # # install - install a program, script, or datafile -# This comes from X11R5. +# This comes from X11R5 (mit/util/scripts/install.sh). +# +# Copyright 1991 by the Massachusetts Institute of Technology +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of M.I.T. not be used in advertising or +# publicity pertaining to distribution of the software without specific, +# written prior permission. M.I.T. makes no representations about the +# suitability of this software for any purpose. It is provided "as is" +# without express or implied warranty. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written -# from scratch. -# +# from scratch. It can only install one file at a time, a restriction +# shared with many OS's install programs. # set DOITPROG to echo to test this script @@ -29,7 +41,7 @@ stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" -tranformbasename="" +transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" |