[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.1-27-g6b2d43098

git at osgeo.org git at osgeo.org
Fri Nov 4 07:51:09 PDT 2022


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, stable-3.3 has been updated
       via  6b2d4309836f6e8d1a07496b7317f9ce03192ada (commit)
      from  fb59d73acf73fadf225091ef0cea5d41c6f88667 (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 6b2d4309836f6e8d1a07496b7317f9ce03192ada
Author: Louis Descoteaux <ld at celertech.ca>
Date:   Thu Nov 3 08:46:57 2022 -0700

    Fix topology install on Alpine
    
    Move include $(PGXS) and use := for LIBTOOL
    References #5264 in 3.3 branch (3.3.2dev)

diff --git a/NEWS b/NEWS
index 96bf753ae..35490e4ba 100644
--- a/NEWS
+++ b/NEWS
@@ -12,6 +12,7 @@ xxxx/xx/xx
   - #5081, Fix error in topology import of self-intersecting rings (Sandro Santilli)
   - #5234, Fix 2.5d topology building regression (Sandro Santilli)
   - #5280, Handle load of dbase character fields with no width specified (Regina Obe)
+  - #5264, Fix topology install on Alpine (Louis Descoteaux)
 
 
 PostGIS 3.3.1
diff --git a/topology/Makefile.in b/topology/Makefile.in
index 9b53bf98f..6bd085fe3 100644
--- a/topology/Makefile.in
+++ b/topology/Makefile.in
@@ -71,12 +71,14 @@ PGXS := @PGXS@
 # NO_TEMP_INSTALL is a workaround for a 9.5dev bug. See:
 # http://www.postgresql.org/message-id/CAB7nPqTsR5o3g-fBi6jbsVdhfPiLFWQ_0cGU5=94Rv_8W3qvFA@mail.gmail.com
 NO_TEMP_INSTALL=yes
-include $(PGXS)
+
 
 top_builddir = @top_builddir@
 VPATH := @srcdir@
 INSTALL = @INSTALL@
-LIBTOOL = @LIBTOOL@
+LIBTOOL := @LIBTOOL@
+
+include $(PGXS)
 
 # Set PERL _after_ the include of PGXS
 PERL=@PERL@

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

Summary of changes:
 NEWS                 | 1 +
 topology/Makefile.in | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list