[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-7-g60f5ae20d
git at osgeo.org
git at osgeo.org
Tue Aug 8 02:55:32 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 60f5ae20dd6d8790b58ac19cde9f04639b573358 (commit)
from a05989263dcb62b77ac5740f1b8ea2a025b9c9df (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 60f5ae20dd6d8790b58ac19cde9f04639b573358
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Aug 8 11:53:38 2023 +0200
Make MKDIR_P variable available in extension Makefiles
Closes #5469
diff --git a/extensions/address_standardizer/Makefile.in b/extensions/address_standardizer/Makefile.in
index 8b07ad87e..31fca2d2f 100644
--- a/extensions/address_standardizer/Makefile.in
+++ b/extensions/address_standardizer/Makefile.in
@@ -205,6 +205,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL = @PERL@
+MKDIR_P = @MKDIR_P@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
diff --git a/extensions/postgis/Makefile.in b/extensions/postgis/Makefile.in
index 1d5619bc4..4723145c9 100644
--- a/extensions/postgis/Makefile.in
+++ b/extensions/postgis/Makefile.in
@@ -149,6 +149,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL = @PERL@
+MKDIR_P = @MKDIR_P@
VPATH = @srcdir@
diff --git a/extensions/postgis_raster/Makefile.in b/extensions/postgis_raster/Makefile.in
index 1d061f114..2842aad38 100644
--- a/extensions/postgis_raster/Makefile.in
+++ b/extensions/postgis_raster/Makefile.in
@@ -131,6 +131,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL = @PERL@
+MKDIR_P = @MKDIR_P@
VPATH = @srcdir@
diff --git a/extensions/postgis_sfcgal/Makefile.in b/extensions/postgis_sfcgal/Makefile.in
index 6acb88a6b..7fea079f5 100644
--- a/extensions/postgis_sfcgal/Makefile.in
+++ b/extensions/postgis_sfcgal/Makefile.in
@@ -103,6 +103,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL = @PERL@
+MKDIR_P = @MKDIR_P@
VPATH = @srcdir@
diff --git a/extensions/postgis_tiger_geocoder/Makefile.in b/extensions/postgis_tiger_geocoder/Makefile.in
index ed0fd3c08..3c18ee7b6 100644
--- a/extensions/postgis_tiger_geocoder/Makefile.in
+++ b/extensions/postgis_tiger_geocoder/Makefile.in
@@ -214,6 +214,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL=@PERL@
+MKDIR_P = @MKDIR_P@
VPATH = @srcdir@
diff --git a/extensions/postgis_topology/Makefile.in b/extensions/postgis_topology/Makefile.in
index e63f8f3d1..75ba45c85 100644
--- a/extensions/postgis_topology/Makefile.in
+++ b/extensions/postgis_topology/Makefile.in
@@ -108,6 +108,7 @@ PG_CONFIG := @PG_CONFIG@
PGXS := @PGXS@
include $(PGXS)
PERL=@PERL@
+MKDIR_P = @MKDIR_P@
VPATH = @srcdir@
-----------------------------------------------------------------------
Summary of changes:
extensions/address_standardizer/Makefile.in | 1 +
extensions/postgis/Makefile.in | 1 +
extensions/postgis_raster/Makefile.in | 1 +
extensions/postgis_sfcgal/Makefile.in | 1 +
extensions/postgis_tiger_geocoder/Makefile.in | 1 +
extensions/postgis_topology/Makefile.in | 1 +
6 files changed, 6 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list