summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/installswat.sh15
1 files changed, 3 insertions, 12 deletions
diff --git a/source3/script/installswat.sh b/source3/script/installswat.sh
index d1f8ea191d..300324b077 100755
--- a/source3/script/installswat.sh
+++ b/source3/script/installswat.sh
@@ -71,13 +71,13 @@ done
done
-# Install Using Samba book
+# Install Using Samba book (but only if it is there)
-if [ "x$BOOKDIR" != "x" ]; then
+if [ "x$BOOKDIR" != "x" -a -f $SRCDIR../docs/htmldocs/using_samba/toc.html ]; then
# Create directories
- for d in $BOOKDIR $BOOKDIR/figs $BOOKDIR/gifs; do
+ for d in $BOOKDIR $BOOKDIR/figs ; do
if [ ! -d $d ]; then
mkdir $d
if [ ! -d $d ]; then
@@ -105,15 +105,6 @@ if [ "x$BOOKDIR" != "x" ]; then
chmod 0644 $FNAME
done
- # Gifs
-
- for f in $SRCDIR../docs/htmldocs/using_samba/gifs/*.gif; do
- FNAME=$BOOKDIR/gifs/`basename $f`
- echo $FNAME
- cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
- chmod 0644 $FNAME
- done
-
fi
cat << EOF