[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1073-g1b93a3ae8
git at osgeo.org
git at osgeo.org
Thu Jun 29 10:35:36 PDT 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 1b93a3ae86b1838363322b418fe35a3218e6bd95 (commit)
from 6199ccb98f1dc07fffaafb2d3692c2805a6fa3c4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1b93a3ae86b1838363322b418fe35a3218e6bd95
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Jun 29 19:31:38 2023 +0200
Use absolute paths for XSLT paths
Closes #5416
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 91c8791dd..ab0caa518 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -30,6 +30,7 @@ datadir = @datadir@
builddir = @builddir@
top_builddir = @top_builddir@
mandir = @mandir@
+abs_srcdir = $(abspath @srcdir@)
POSTGIS_MAJOR_VERSION=@POSTGIS_MAJOR_VERSION@
POSTGIS_MINOR_VERSION=@POSTGIS_MINOR_VERSION@
@@ -59,8 +60,11 @@ ifeq ($(XSLTPROCFLAGS),)
XSLTPROCFLAGS=--nonet
endif
+XSLT_PATH= \
+ .:./ent:$(abs_srcdir):$(abs_srcdir)/ent
+
XSLTPROC_PATH_OPT= \
- --path .:./ent:$(srcdir):$(srcdir)/ent
+ --path $(XSLT_PATH)
XSLTPROC_COMMONOPTS= \
$(XSLTPROC_PATH_OPT) \
@@ -320,6 +324,7 @@ postgis-${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${POSTGIS_MICRO_VERSIO
false; \
else \
$(DBLATEX) -T native -t pdf \
+ -x "--path $(XSLT_PATH)" \
-I "${PWD}/html" \
-P doc.collab.show=0 \
-P figure.note="${PWD}/html/images/note" \
-----------------------------------------------------------------------
Summary of changes:
doc/Makefile.in | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list