summaryrefslogtreecommitdiff
path: root/install-script
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-17 20:19:13 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-17 20:19:13 +0000
commitca4db9f23572fa4ee6de03d8f4f7237c56ebccc9 (patch)
treec10c2e5290f55c62211022c83d11daadf9a3a7f3 /install-script
parent81b7aa657110db03ceb861d8206fc6e805ede9c8 (diff)
Removed the old autotools files that are no longer needed because of the use of CMake.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1842 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'install-script')
-rw-r--r--install-script29
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