Author: jerry Date: 2005-12-02 21:52:00 +0000 (Fri, 02 Dec 2005) New Revision: 12033
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12033 Log: portability fixes for installman script and some egnored files Modified: branches/SAMBA_3_0_RELEASE/source/auth/ branches/SAMBA_3_0_RELEASE/source/bin/ branches/SAMBA_3_0_RELEASE/source/script/installman.sh Changeset: Property changes on: branches/SAMBA_3_0_RELEASE/source/auth ___________________________________________________________________ Name: svn:ignore + *.po Property changes on: branches/SAMBA_3_0_RELEASE/source/bin ___________________________________________________________________ Name: svn:ignore - *.so *.a .dummy .libs debug2html editreg locktest locktest2 log2pcap make_printerdef make_smbcodepage make_unicodemap masktest msgtest net nmbd nmblookup nsstest ntlm_auth pdbedit profiles rpcclient samsync samtest smbcacls smbcacls smbclient smbcontrol smbcquotas smbd smbfilter smbget smbgroupedit smbiconv smbmnt smbmount smbpasswd smbsh smbspool smbstatus smbtorture smbtree smbumount swat t_push_ucs2 t_snprintf t_strcmp t_stringoverflow talloctort tdbbackup tdbdump tdbtool testparm testprns vfstest wbinfo winbindd wrepld + *.so *.a .dummy .libs debug2html editreg locktest locktest2 log2pcap make_printerdef make_smbcodepage make_unicodemap masktest msgtest net nmbd nmblookup nsstest ntlm_auth pdbedit profiles rpcclient samsync samtest smbcacls smbcacls smbclient smbcontrol smbcquotas smbd smbfilter smbget smbgroupedit smbiconv smbmnt smbmount smbpasswd smbsh smbspool smbstatus smbtorture smbtree smbumount swat t_push_ucs2 t_snprintf t_strcmp t_stringoverflow talloctort tdbbackup tdbdump tdbtool testparm testprns vfstest wbinfo winbindd wrepld eventlogadm Modified: branches/SAMBA_3_0_RELEASE/source/script/installman.sh =================================================================== --- branches/SAMBA_3_0_RELEASE/source/script/installman.sh 2005-12-02 21:48:55 UTC (rev 12032) +++ branches/SAMBA_3_0_RELEASE/source/script/installman.sh 2005-12-02 21:52:00 UTC (rev 12033) @@ -19,8 +19,7 @@ fi # Get the configured feature set -test -f "${SRCDIR}/config.log" && \ - eval $( grep "^[[:alnum:]]*=.*" "${SRCDIR}/config.log") +test -f "${SRCDIR}/config.log" && eval `grep '^[A-Za-z0-9]*=.*' ${SRCDIR}/config.log` for lang in $langs; do if [ "X$lang" = XC ]; then @@ -44,7 +43,7 @@ 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##*/} + MP_BASENAME=`basename $s` # Check if this man page if required by the configured feature set case "${MP_BASENAME}" in
