[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-500-gd9c97817b

git at osgeo.org git at osgeo.org
Wed Sep 13 01:04:52 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  d9c97817b9bb30c7c3c8f34d26e38274ad4f010d (commit)
      from  4d57cbcdfe1fe6e6b56b7902f51aae40a9ce577e (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 d9c97817b9bb30c7c3c8f34d26e38274ad4f010d
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Sep 13 10:04:14 2023 +0200

    Fail early and avoid error flood if docbook5 isn't found
    
    References #5533

diff --git a/doc/Makefile.in b/doc/Makefile.in
index f2f45e93f..77ad2e9f5 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -576,6 +576,10 @@ check-xml: requirements_not_met_xmllint
 check-cheatsheets: requirements_not_met_xmllint
 else
 check-xml: postgis-out.xml
+	# Fail early if cannot find required RelaxNG
+	xmlcatalog "" "http://docbook.org/xml/5.0/rng/docbook.rng"
+	# Fail early if cannot find required DTD
+	xmlcatalog "" "http://docbook.org/xml/5.0/dtd/docbook.dtd"
 	# TODO: --schematron http://docbook.org/xml/5.0/sch/docbook.sch
 	# See https://trac.osgeo.org/postgis/ticket/5532
 	$(XMLLINT) --noout --nonet \

-----------------------------------------------------------------------

Summary of changes:
 doc/Makefile.in | 4 ++++
 1 file changed, 4 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list