diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
commit | 4f5791ebd03eaec1c7da0865a383175b05102712 (patch) | |
tree | 8ce7b00f7a76baa386372422adebbe64510812d4 /release-scripts/build-docs | |
parent | Initial commit. (diff) | |
download | samba-4f5791ebd03eaec1c7da0865a383175b05102712.tar.xz samba-4f5791ebd03eaec1c7da0865a383175b05102712.zip |
Adding upstream version 2:4.17.12+dfsg.upstream/2%4.17.12+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | release-scripts/build-docs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/release-scripts/build-docs b/release-scripts/build-docs new file mode 100755 index 0000000..ea1a846 --- /dev/null +++ b/release-scripts/build-docs @@ -0,0 +1,39 @@ +#!/bin/sh + +_exit() +{ + echo $@ + popd + exit 1 +} + +DOCSRCDIR=$(dirname $0)/../docs-xml + +pushd $DOCSRCDIR || exit 1 + +git clean -d -x -f +export XML_CATALOG_FILES="file:///etc/xml/catalog file://$(pwd)/build/catalog.xml" +autoconf && + ./configure --with-papersize=letter && + make smbdotconf/parameters.all.xml && + make release + +if [ $? != 0 ]; then + _exit "Docs build failed!" +fi + +mkdir -p ../docs +rsync -Ca --delete --exclude=.git output/ ../docs/ +rsync -Ca --exclude=.svn registry ../docs/ +rsync -Ca --exclude=.svn archives/ ../docs/ + +cd ../docs || _exit "Error changing dir to ${DOCSDIR}/../docs/" + +/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test + +cd ../docs-xml || _exit "Error changing dir to ${DOCSDIR}/../docs-xml/" +make distclean + +echo "Success" +popd +exit |