1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

Fix release script to build full set of documentation

build-docs script was not setting XML catalog properly.

In addition, some time ago pdf versions of images were introduced as
generated dependencies in our books but svg -> pdf rule was not added,
so building books never finished properly.

Autobuild-User(master): Alexander Bokovoy <ab@samba.org>
Autobuild-Date(master): Tue Oct  2 16:21:23 CEST 2012 on sn-devel-104
This commit is contained in:
Alexander Bokovoy 2012-10-02 14:53:38 +03:00
parent dce8a8e284
commit 4a21d2e779
2 changed files with 4 additions and 2 deletions

View File

@ -191,6 +191,9 @@ $(PSDIR)/%.ps: %/index.xml $(PSDIR) xslt/latex.xsl %-images-latex-eps
%.eps: %.png
$(PNGTOPNM) $< | $(PNMTOPS) > $@
%.pdf: %.svg
$(INKSCAPE) -z -f $(abspath $<) --export-pdf=$(abspath $@)
$(HTMLHELPDIR)/%: $(DOCBOOKDIR)/%.xml %-images-htmlhelp
$(XSLTPROC) --stringparam htmlhelp.chm $*.chm \
--stringparam manifest.in.base.dir "$@/" \

View File

@ -11,6 +11,7 @@ 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 && \
@ -28,8 +29,6 @@ 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
mv manpages-3 manpages
mv htmldocs/manpages-3 htmldocs/manpages
cd ../docs-xml || _exit "Error changing dir to ${DOCSDIR}/../docs-xml/"
make distclean