diff options
-rwxr-xr-x | source3/script/installman.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/installman.sh b/source3/script/installman.sh index 2f79996807..b029089ab2 100755 --- a/source3/script/installman.sh +++ b/source3/script/installman.sh @@ -13,7 +13,7 @@ if [ $# -ge 4 ] ; then GROFF=$4 # sh cmd line, including options fi -if test ! -d $SRCDIR../docs/manpages; then +if test ! -d $SRCDIR../bin/docs/manpages; then echo "No manpages present. Development version maybe?" exit 0 fi @@ -44,7 +44,7 @@ for lang in $langs; do for sect in 1 5 7 8 ; do for m in $langdir/man$sect ; do - for s in $SRCDIR../docs/manpages/$lang/*$sect; do + for s in $SRCDIR../bin/docs/manpages/$lang/*$sect; do MP_BASENAME=`basename $s` # Check if this man page if required by the configured feature set |