summaryrefslogtreecommitdiff
path: root/install-sh
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1998-09-18 02:07:42 +0000
committerManish Singh <yosh@src.gnome.org>1998-09-18 02:07:42 +0000
commit483bec40cc53149cf7712fed823d2bb625ffabda (patch)
tree73e49ef67e5b8b1e901d6f262909b6d31fac151d /install-sh
parenteb0fec7865bdb3583470ad31448614d14f1ac02e (diff)
downloadgtk+-483bec40cc53149cf7712fed823d2bb625ffabda.tar.gz
updated to latest automake version
-Yosh
Diffstat (limited to 'install-sh')
-rwxr-xr-xinstall-sh22
1 files changed, 17 insertions, 5 deletions
diff --git a/install-sh b/install-sh
index 89fc9b098b..e8436696c1 100755
--- a/install-sh
+++ b/install-sh
@@ -1,15 +1,27 @@
-#! /bin/sh
+#!/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"