1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-16 23:27:15 +02:00

Update POCO to 1.11.0

This commit is contained in:
Sandu Liviu Catalin
2021-08-22 18:07:06 +03:00
parent 151077c799
commit 7a3d92d1d1
450 changed files with 25219 additions and 6528 deletions

View File

@ -26,12 +26,12 @@ case `uname` in
esac
spec=""
docConfig=$POCO_BASE/PocoDoc/cfg/mkdoc-poco.xml
docConfig=""
while [ "$1" != "" ] ;
do
if [ "$1" = "-C" ] ; then
shift
docConfig=$1
docConfig="$docConfig -C $1"
shift
elif [ "$1" = "-v" ] ; then
shift
@ -43,6 +43,10 @@ do
fi
done
if [ -z "$docConfig" ] ; then
docConfig="-C $POCO_BASE/PocoDoc/cfg/mkdoc-poco.xml"
fi
if [ "$spec" != "" ] ; then
relspec="-f release/spec/${spec}.release"
tag="-$spec"
@ -105,4 +109,4 @@ export PATH=$tools/PocoDoc/bin/$osname/$osarch:$PATH
echo PATH=$PATH
echo "Building documentation $release (using $docConfig)"
mkdocumentation $reltag $relspec -C $docConfig -v $version
mkdocumentation $reltag $relspec $docConfig -v $version