From: Gerald (Jerry) Carter Date: Tue, 27 May 2008 17:00:00 +0000 (-0500) Subject: Add simple script to build docs X-Git-Tag: samba-3.3.0pre1~1118^2~16 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=0865f4615d3ee91673dd6d02c6537765f34b3129 Add simple script to build docs --- diff --git a/release-scripts/build-docs b/release-scripts/build-docs new file mode 100755 index 00000000000..529a1c07f18 --- /dev/null +++ b/release-scripts/build-docs @@ -0,0 +1,25 @@ +#!/bin/sh + +DOCSRCDIR=`dirname $0`/../docs-xml + +cd $DOCSRCDIR || exit 1 + +git-clean -d -x -f +autoconf && ./configure --with-papersize=letter && 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 + +exit \ No newline at end of file