1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/release-scripts/build-docs
Karolin Seeger 157864d1e8 build_docs: Use 'make distclean' instead of 'make clean'.
This fixes bug #6058.
Thanks to Christian Perrier for reporting!

Karolin
(cherry picked from commit 162e4b6660)

Signed-off-by: Michael Adam <obnox@samba.org>
2009-01-21 13:56:59 +01:00

32 lines
625 B
Bash
Executable File

#!/bin/sh
DOCSRCDIR=`dirname $0`/../docs-xml
cd $DOCSRCDIR || exit 1
git clean -d -x -f
autoconf && \
./configure --with-papersize=letter && \
make smbdotconf/parameters.all.xml && \
make release
if [ $? != 0 ]; then
echo "Docs build failed!"
exit 1
fi
mkdir ../docs
rsync -Ca --delete --exclude=.git output/ ../docs/
rsync -Ca --exclude=.svn registry ../docs/
rsync -Ca --exclude=.svn archives/ ../docs/
cd ../docs || exit 1
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
mv manpages-3 manpages
mv htmldocs/manpages-3 htmldocs/manpages
cd ../docs-xml || exit 1
make distclean
exit