1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

patch from TAKEDA yasuma to bypass any missing language files

(This used to be commit a3b0cc9f5b230cc4b9a017c9566b2ef83fb54030)
This commit is contained in:
Gerald Carter 2003-12-10 14:10:26 +00:00
parent 8af211b774
commit 5c8b533638

View File

@ -29,6 +29,9 @@ done
for ln in $LANGS; do
for f in $SRCDIR../swat/$ln/images/*.gif; do
if [ ! -f $f ] ; then
continue
fi
FNAME=$SWATDIR/$ln/images/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
@ -38,6 +41,9 @@ for ln in $LANGS; do
# Install html help
for f in $SRCDIR../swat/$ln/help/*.html; do
if [ ! -f $f ] ; then
continue
fi
FNAME=$SWATDIR/$ln/help/`basename $f`
echo $FNAME
if [ "x$BOOKDIR" = "x" ]; then
@ -54,6 +60,9 @@ for ln in $LANGS; do
# Install "server-side" includes
for f in $SRCDIR../swat/$ln/include/*.html; do
if [ ! -f $f ] ; then
continue
fi
FNAME=$SWATDIR/$ln/include/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?