1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

Share codepages.

This commit is contained in:
Jelmer Vernooij 2008-10-23 16:58:11 +02:00
parent 8a3bff343a
commit 5b5e36085a
8 changed files with 2 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -20,7 +20,7 @@ case $0 in
*) mode='install' ;;
esac
for f in $SRCDIR/codepages/*.dat; do
for f in $SRCDIR/../codepages/*.dat; do
FNAME="$DESTDIR/$DATDIR/`basename $f`"
if test "$mode" = 'install'; then
echo "Installing $f as $FNAME "

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

View File

@ -6,7 +6,7 @@ SRCDIR=$2/
echo Installing dat files in $DATDIR
for f in $SRCDIR/codepages/*.dat; do
for f in $SRCDIR/../codepages/*.dat; do
FNAME=$DATDIR/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?