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

jerry at samba.org jerry at samba.org
Fri Nov 11 21:11:34 GMT 2005


Author: jerry
Date: 2005-11-11 21:11:33 +0000 (Fri, 11 Nov 2005)
New Revision: 11685

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

Log:
reverting Lar's change to nistallman from r11224 since it breaks 'make installman' outside the source tree; will fix up after the rc1 release
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-11-11 21:05:51 UTC (rev 11684)
+++ branches/SAMBA_3_0/source/script/installman.sh	2005-11-11 21:11:33 UTC (rev 11685)
@@ -18,10 +18,6 @@
 	exit 0
 fi
 
-# Get the configured feature set
-test -f config.log && \
-	eval $( grep "^[[:alnum:]]*=.*" config.log)
-
 for lang in $langs; do
     if [ "X$lang" = XC ]; then
 	echo Installing default man pages in $MANDIR/
@@ -44,20 +40,13 @@
     for sect in 1 5 7 8 ; do
 	for m in $langdir/man$sect ; do
 	    for s in $SRCDIR../docs/manpages/$lang/*$sect; do
-	    MP_BASENAME=${s##*/}
-
-	    # Check if this man page if required by the configured feature set
-	    case "${MP_BASENAME}" in
-	    	smbsh.1) test -z "${SMBWRAPPER}" && continue ;;
-		*) ;;
-	    esac
-
-	    FNAME="$m/${MP_BASENAME}"
-
+	    FNAME=$m/`basename $s`
+ 
 	    # Test for writability.  Involves 
 	    # blowing away existing files.
  
 	    if (rm -f $FNAME && touch $FNAME); then
+		rm $FNAME
 		if [ "x$GROFF" = x ] ; then
 		    cp $s $m            # Copy raw nroff 
 		else



More information about the samba-cvs mailing list