svn commit: samba r7944 - in branches/SAMBA_3_0/source/script: .

jerry at samba.org jerry at samba.org
Mon Jun 27 13:20:13 GMT 2005


Author: jerry
Date: 2005-06-27 13:20:12 +0000 (Mon, 27 Jun 2005)
New Revision: 7944

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7944

Log:
BUG 2808: don't try to install manpages if they are not present
Modified:
   branches/SAMBA_3_0/source/script/installman.sh


Changeset:
Modified: branches/SAMBA_3_0/source/script/installman.sh
===================================================================
--- branches/SAMBA_3_0/source/script/installman.sh	2005-06-27 12:09:52 UTC (rev 7943)
+++ branches/SAMBA_3_0/source/script/installman.sh	2005-06-27 13:20:12 UTC (rev 7944)
@@ -13,6 +13,10 @@
   GROFF=$4                    # sh cmd line, including options 
 fi
 
+if test ! -d docs/manpages; then
+	echo "No manpages present.  SVN development version maybe?"
+	exit 0
+fi
 
 for lang in $langs; do
     if [ "X$lang" = XC ]; then



More information about the samba-cvs mailing list