mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
97bec3fc3e
(This used to be commit d777bba508
)
45 lines
1.0 KiB
Bash
Executable File
45 lines
1.0 KiB
Bash
Executable File
#!/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
|
|
|