summaryrefslogtreecommitdiff
path: root/source3/script/uninstallcp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source3/script/uninstallcp.sh')
-rwxr-xr-xsource3/script/uninstallcp.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/source3/script/uninstallcp.sh b/source3/script/uninstallcp.sh
deleted file mode 100755
index 2a9e9d509a..0000000000
--- a/source3/script/uninstallcp.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-CPDIR=$1
-shift
-
-if [ ! -d $CPDIR ]; then
- echo Directory $CPDIR does not exist!
- echo Do a "make installcp" or "make install" first.
- exit 1
-fi
-
-for p in $*; do
- if [ ! -f $CPDIR/unicode_map.$p ]; then
- echo $CPDIR/unicode_map.$p does not exist!
- else
- echo Removing $CPDIR/unicode_map.$p
- rm -f $CPDIR/unicode_map.$p
- if [ -f $CPDIR/unicode_map.$p ]; then
- echo Cannot remove $CPDIR/unicode_map.$p... does $USER have privileges?
- fi
- fi
-done
-
-cat << EOF
-======================================================================
-The code pages have been uninstalled. You may reinstall them using
-the command "make installcp" or "make install" to install binaries,
-man pages, shell scripts and code pages. You may recover a previous version
-(if any with "make revert").
-======================================================================
-EOF
-
-exit 0