summaryrefslogtreecommitdiff
path: root/source4/script/installman.sh
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-07 13:18:43 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-07 04:09:40 +0100
commite196e526408d478cac895f04917503706c469cf6 (patch)
tree578f8e9265e2610a916f35288f2273adbd250ad2 /source4/script/installman.sh
parent1867a6033ca22da715017df005a5ad61c66e1597 (diff)
downloadsamba-e196e526408d478cac895f04917503706c469cf6.tar.gz
samba-e196e526408d478cac895f04917503706c469cf6.tar.bz2
samba-e196e526408d478cac895f04917503706c469cf6.zip
s4-build: remove a bunch of unused build scripts
these were leftover from the autoconf build Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Feb 7 04:09:40 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/script/installman.sh')
-rwxr-xr-xsource4/script/installman.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/source4/script/installman.sh b/source4/script/installman.sh
deleted file mode 100755
index 3350eb87bc..0000000000
--- a/source4/script/installman.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-MANDIR=$1
-shift 1
-MANPAGES=$*
-
-for I in $MANPAGES
-do
- SECTION=`echo -n $I | sed "s/.*\(.\)$/\1/"`
- DIR="$MANDIR/man$SECTION"
- if [ ! -d "$DIR" ]
- then
- mkdir "$DIR"
- fi
-
- BASE=`basename $I`
-
- echo "Installing manpage \"$BASE\" in $DIR"
- cp $I $DIR
-done
-
-cat << EOF
-======================================================================
-The man pages have been installed. You may uninstall them using the command
-the command "make uninstallman" or make "uninstall" to uninstall binaries,
-man pages and shell scripts.
-======================================================================
-EOF
-
-exit 0