tsocket: fill in sa.sa_len if the system supports it
[Samba/gebeck_regimport.git] / release-scripts / build-manpages-git
bloba9c51b53cf2fea3a5172d6adc79b5692620e49e8
1 #!/bin/sh
3 # Copyright (C) Michael Adam 2010
5 _exit() {
6 echo $@
7 popd
8 exit 1
11 DIRNAME=$(dirname $0)
12 DOCS_XML_DIR=${DIRNAME}/../docs-xml
13 DOCS_DIR=${DIRNAME}/../docs
15 pushd ${DOCS_XML_DIR} || exit 1
17 git clean -xdf || _exit "Error running git clean."
19 autoconf || _exit "Error running autoconf."
21 ./configure || _exit "Error running configure."
23 export XML_CATALOG_FILES="file:///etc/xml/catalog file://$(pwd)/build/catalog.xml"
25 make manpages3 || _exit "Error running make manpages3"
27 popd
29 test -e ${DOCS_DIR}/manpages && rm -rf ${DOCS_DIR}/manpages
30 mkdir -p ${DOCS_DIR}/manpages
32 rsync -Ca ${DOCS_XML_DIR}/output/manpages-3/ ${DOCS_DIR}/manpages
34 echo "Success"
35 exit
37 # END