don't complain if the using_samba book is not in the tree
authorGerald Carter <jerry@samba.org>
Fri, 22 Aug 2003 16:23:56 +0000 (16:23 +0000)
committerGerald Carter <jerry@samba.org>
Fri, 22 Aug 2003 16:23:56 +0000 (16:23 +0000)
(This used to be commit 20603faf2c6e37b1db139cdbbfd4131cb5c33869)

source3/script/installswat.sh

index d1f8ea191d93603cce7ba88594d4f76e2b9bda18..300324b0772112bbbe38bfdf649dc90d2b5d41d2 100755 (executable)
@@ -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