[postgis-tickets] [SCM] PostGIS branch stable-3.4 updated. 3.4.0-18-gd79127c51
git at osgeo.org
git at osgeo.org
Tue Sep 5 07:21:55 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, stable-3.4 has been updated
via d79127c514f081a395c4c4c2440f7c6ca9a2e53f (commit)
from d1471d1e244034d4c2d77ab3e7178de0dc89dace (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 d79127c514f081a395c4c4c2440f7c6ca9a2e53f
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Sep 5 15:43:37 2023 +0200
Avoid GNUism in ln(1) use
Closes #5485 in 3.4 branch (3.4.1dev)
diff --git a/NEWS b/NEWS
index 5abc57893..b905b9d9c 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
* Bug Fixes *
+ - #5485, Fix postgis script on OpenBSD (Sandro Santilli)
- #5516, Fix upgrade with views using deprecated function, among which:
ST_AddBand (#5509), ST_AsGeoJSON (#5523) ST_AsKML (#5524)
ST_Aspect (#5491), ST_BandIsNoData (#5510), ST_BandMetadata (#5502),
diff --git a/loader/postgis.pl b/loader/postgis.pl
index 45536a0f4..a09713b33 100644
--- a/loader/postgis.pl
+++ b/loader/postgis.pl
@@ -88,7 +88,7 @@ sub install_upgrade_from
die "File ${EXTDIR}/${extname}--TEMPLATED--TO--ANY.sql is missing"
unless -f "${EXTDIR}/${extname}--TEMPLATED--TO--ANY.sql";
- my $shcmd = "ln -fvs '${extname}--TEMPLATED--TO--ANY.sql' '${EXTDIR}/${extname}--${from}--ANY.sql'";
+ my $shcmd = "ln -fs '${extname}--TEMPLATED--TO--ANY.sql' '${EXTDIR}/${extname}--${from}--ANY.sql'";
#print " CMD: ${shcmd}\n";
my $rv = system($shcmd);
if ( $rv ) {
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
loader/postgis.pl | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list