diff options
author | Adam <Adam@anope.org> | 2010-07-09 02:27:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-09 02:27:02 -0400 |
commit | 166d6f5d0933a3c639b869235f0fabdfac499886 (patch) | |
tree | d6df597cd6d22e7bab7b950112238b37eb462278 /install-script | |
parent | 7e20659522abae28509a38f2010a5508eae3b6c3 (diff) |
Removed autotools and the makefiles. This will be reintroduced differently before the 1.9.3 release.
Diffstat (limited to 'install-script')
-rw-r--r-- | install-script | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/install-script b/install-script deleted file mode 100644 index aeb6d3352..000000000 --- a/install-script +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -SRC= ; DEST= ; MODE= ; USER= ; GROUP= ; export SRC DEST MODE USER GROUP -while [ $# -gt 0 ] ; do - case $1 in - -m) MODE=$2; shift; shift;; - -u) USER=$2; shift; shift;; - -g) GROUP=$2; shift; shift;; - -c) shift;; - *) SRC="$DEST"; DEST="$1"; shift;; - esac -done -if [ ! "$DEST" ] ; then - echo >&2 "Usage: $0 [-c] [-m mode] [-u user] [-g group] source dest" - exit 1 -fi -if [ -d "$DEST" ] ; then - DEST="$DEST/$SRC" -fi -/bin/cp -p "$SRC" "$DEST" -if [ "$MODE" ] ; then - /bin/chmod $MODE "$DEST" -fi -if [ "$USER" ] ; then - /bin/chown "$USER" "$DEST" -fi -if [ "$GROUP" ] ; then - /bin/chgrp "$GROUP" "$DEST" -fi |