[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1244-g4a9b1312d

git at osgeo.org git at osgeo.org
Thu Jul 13 23:44:19 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  4a9b1312df60a14acc0d4813076ea26a9113a674 (commit)
      from  92c5d42c616abd845a8425ae5341a260d60273e8 (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 4a9b1312df60a14acc0d4813076ea26a9113a674
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Jul 14 08:43:09 2023 +0200

    Do remove and re-create symlinks
    
    Works around mingw lack of symlinks support.
    Should fix #5441

diff --git a/doc/po/Makefile.local b/doc/po/Makefile.local
index 5b7065339..8f47b085d 100644
--- a/doc/po/Makefile.local
+++ b/doc/po/Makefile.local
@@ -1,9 +1,9 @@
-# This file should be installed in each
-# language directory
+# This file should be included by the Makefile
+# of each language directory
 
 local-all: local-html comments
 
-# We do not want to recurse in parent dir here
+# We do not want to recurse in parent dir for the "clean" rule
 local-clean: local-html-clean local-pdf-clean local-epub-clean local-cheatsheet-clean
 	rm -f images # work around https://trac.osgeo.org/postgis/ticket/5422
 	rm -f $(XML_INPUTS)
@@ -18,8 +18,8 @@ local-%: symlinks
 	$(MAKE) $(patsubst local-%,%,$@) DOCSUFFIX=$(DOCSUFFIX)
 
 symlinks:
-	ln -sf ../../html .
-	ln -sf $(srcdir)/../../xsl .
+	test -e html || ln -sf ../../html .
+	test -e xsl || ln -sf $(srcdir)/../../xsl .
 
 # for XML_SOURCES
 include ../../Makefile

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

Summary of changes:
 doc/po/Makefile.local | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list