[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-90-g6544f7696
git at osgeo.org
git at osgeo.org
Wed Sep 14 05:56:51 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, master has been updated
via 6544f76965987c5f5d471195c0d464773704c760 (commit)
from 63b1fb14a79f4d09776537838b5159c7750d3b57 (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 6544f76965987c5f5d471195c0d464773704c760
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Sep 14 14:46:17 2022 +0200
Make top_builddir and top_absbuilddir available in ext scripts
diff --git a/extensions/address_standardizer/Makefile.in b/extensions/address_standardizer/Makefile.in
index 00c76155c..73d084254 100644
--- a/extensions/address_standardizer/Makefile.in
+++ b/extensions/address_standardizer/Makefile.in
@@ -203,6 +203,9 @@ include $(PGXS)
PERL = @PERL@
srcdir = @srcdir@
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
+
VPATH = $(srcdir)
install: all installdirs
diff --git a/extensions/postgis/Makefile.in b/extensions/postgis/Makefile.in
index d79b0dfc3..6fd828247 100644
--- a/extensions/postgis/Makefile.in
+++ b/extensions/postgis/Makefile.in
@@ -159,3 +159,6 @@ include $(PGXS)
PERL = @PERL@
VPATH = @srcdir@
+
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
diff --git a/extensions/postgis_raster/Makefile.in b/extensions/postgis_raster/Makefile.in
index c2bc94059..33cb4f250 100644
--- a/extensions/postgis_raster/Makefile.in
+++ b/extensions/postgis_raster/Makefile.in
@@ -132,3 +132,5 @@ PERL = @PERL@
VPATH = @srcdir@
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
diff --git a/extensions/postgis_sfcgal/Makefile.in b/extensions/postgis_sfcgal/Makefile.in
index 232971000..a1bf29b52 100644
--- a/extensions/postgis_sfcgal/Makefile.in
+++ b/extensions/postgis_sfcgal/Makefile.in
@@ -105,3 +105,6 @@ include $(PGXS)
PERL = @PERL@
VPATH = @srcdir@
+
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
diff --git a/extensions/postgis_tiger_geocoder/Makefile.in b/extensions/postgis_tiger_geocoder/Makefile.in
index 559451cae..efbc9fe30 100644
--- a/extensions/postgis_tiger_geocoder/Makefile.in
+++ b/extensions/postgis_tiger_geocoder/Makefile.in
@@ -216,3 +216,6 @@ include $(PGXS)
PERL=@PERL@
VPATH = @srcdir@
+
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
diff --git a/extensions/postgis_topology/Makefile.in b/extensions/postgis_topology/Makefile.in
index c8eb43aba..3b4b684fc 100644
--- a/extensions/postgis_topology/Makefile.in
+++ b/extensions/postgis_topology/Makefile.in
@@ -110,3 +110,6 @@ include $(PGXS)
PERL=@PERL@
VPATH = @srcdir@
+
+top_builddir = @top_builddir@
+abs_topbuilddir=$(abspath $(top_builddir))
-----------------------------------------------------------------------
Summary of changes:
extensions/address_standardizer/Makefile.in | 3 +++
extensions/postgis/Makefile.in | 3 +++
extensions/postgis_raster/Makefile.in | 2 ++
extensions/postgis_sfcgal/Makefile.in | 3 +++
extensions/postgis_tiger_geocoder/Makefile.in | 3 +++
extensions/postgis_topology/Makefile.in | 3 +++
6 files changed, 17 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list