diff options
author | Lars Müller <lmuelle@samba.org> | 2007-01-10 20:08:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:01 -0500 |
commit | 1e8cbe46e0c59b65f15c225a43fb64a1a5a69cfc (patch) | |
tree | 2af4d7e9b8daff6ef3dc3f24b7a581809fb4af57 | |
parent | 99c1e8f262c4a4a9bd0c4e71faea3bbfe324266d (diff) | |
download | samba-1e8cbe46e0c59b65f15c225a43fb64a1a5a69cfc.tar.gz samba-1e8cbe46e0c59b65f15c225a43fb64a1a5a69cfc.tar.bz2 samba-1e8cbe46e0c59b65f15c225a43fb64a1a5a69cfc.zip |
r20666: Also do not install the smbmnt man page if SMBMOUNT_PROGS is not set.
(This used to be commit aa122be8f7a33ebceeb43e4f0c5362047560b199)
-rwxr-xr-x | source3/script/installman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/installman.sh b/source3/script/installman.sh index b879c79022..2bb490f011 100755 --- a/source3/script/installman.sh +++ b/source3/script/installman.sh @@ -49,7 +49,7 @@ for lang in $langs; do # Check if this man page if required by the configured feature set case "${MP_BASENAME}" in smbsh.1) test -z "${SMBWRAPPER}" && continue ;; - smbmount.8) test -z "${SMBMOUNT_PROGS}" && continue ;; + smbmnt.8|smbmount.8) test -z "${SMBMOUNT_PROGS}" && continue ;; *) ;; esac |