summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-09-17 20:30:27 -0400
committerStefan Metzmacher <metze@samba.org>2012-09-18 04:00:02 +0200
commit1a945686a6770a0ac17bded73201368f10c65bc9 (patch)
treefe22ff7a31d65da52a88aafff71fe9bee2a0713f /source3/script
parenta4e8869f7c93f30dd7014ff83d6d2f2b5afc2d64 (diff)
downloadsamba-1a945686a6770a0ac17bded73201368f10c65bc9.tar.gz
samba-1a945686a6770a0ac17bded73201368f10c65bc9.tar.bz2
samba-1a945686a6770a0ac17bded73201368f10c65bc9.zip
source3/script: fix installman.sh after the last build-manpages-nogit change
commit cfdab79729e8507a7504b0224c60454d3bc40ffc Author: Michael Adam <obnox@samba.org> Date: Wed Sep 12 15:46:35 2012 +0200 release-scripts: let build-manpages-nogit store generated docs under ./bin/docs not under ./docs Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/installman.sh4
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