[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-425-g2f970f659

git at osgeo.org git at osgeo.org
Tue Sep 12 11:51:01 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  2f970f6592f4ac9d02f24b78df6588937488b674 (commit)
      from  cb78670c43c6243631a6c975b6a2a2e0eec39fa0 (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 2f970f6592f4ac9d02f24b78df6588937488b674
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Sep 12 20:50:47 2023 +0200

    Do not leave empty .xml around if po2xml fails

diff --git a/doc/po/Makefile.local b/doc/po/Makefile.local
index cd2f464bd..ce725d6eb 100644
--- a/doc/po/Makefile.local
+++ b/doc/po/Makefile.local
@@ -26,5 +26,6 @@ include ../../Makefile
 PO2XML=po2xml
 
 $(XML_SOURCES): %.xml: %.xml.po $(abs_srcdir)/%.xml
-	$(PO2XML) $(abs_srcdir)/$@ $< > $@
+	$(PO2XML) $(abs_srcdir)/$@ $< > $@.tmp
+	mv $@.tmp $@
 

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

Summary of changes:
 doc/po/Makefile.local | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list