summaryrefslogtreecommitdiff
path: root/source3/script/installcp.sh
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-11-13 20:38:56 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-11-13 20:38:56 +0000
commit97bec3fc3e676e088ea78ba81ea02cb4f9434edb (patch)
tree38ad575cf87a02e4bf66815a4fdf0375953e7237 /source3/script/installcp.sh
parent3653187a0571a97e4c54e2ee4dd8c0c7e21e487f (diff)
downloadsamba-97bec3fc3e676e088ea78ba81ea02cb4f9434edb.tar.gz
samba-97bec3fc3e676e088ea78ba81ea02cb4f9434edb.tar.bz2
samba-97bec3fc3e676e088ea78ba81ea02cb4f9434edb.zip
Remove obsolete scripts and put in module install/uninstall
(This used to be commit d777bba5082ebdf78d314b0d7b4196a4d6413e1f)
Diffstat (limited to 'source3/script/installcp.sh')
-rwxr-xr-xsource3/script/installcp.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/source3/script/installcp.sh b/source3/script/installcp.sh
deleted file mode 100755
index d0c5bf8ecc..0000000000
--- a/source3/script/installcp.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-srcdir=$1
-LIBDIR=$2
-CODEPAGEDIR=$3
-BINDIR=$4
-
-shift
-shift
-shift
-shift
-
-echo Installing codepage files in $CODEPAGEDIR
-for d in $LIBDIR $CODEPAGEDIR; do
-if [ ! -d $d ]; then
-mkdir $d
-if [ ! -d $d ]; then
- echo Failed to make directory $d
- exit 1
-fi
-fi
-done
-
-for p in $*; do
- if [ -f ${srcdir}/codepages/codepage_def.$p ]; then
- echo Creating codepage file $CODEPAGEDIR/codepage.$p
- $BINDIR/make_smbcodepage c $p ${srcdir}/codepages/codepage_def.$p $CODEPAGEDIR/codepage.$p
- fi
- if [ -f ${srcdir}/codepages/CP${p}.TXT ]; then
- echo Creating unicode map $CODEPAGEDIR/unicode_map.$p
- $BINDIR/make_unicodemap $p ${srcdir}/codepages/CP${p}.TXT $CODEPAGEDIR/unicode_map.$p
- fi
-done
-
-
-cat << EOF
-======================================================================
-The code pages have been installed. You may uninstall them using the
-command "make uninstallcp" or make "uninstall" to uninstall binaries,
-man pages, shell scripts and code pages.
-======================================================================
-EOF
-
-exit 0
-