[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-263-gc70754806

git at osgeo.org git at osgeo.org
Tue Sep 5 06:44:07 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  c707548060771b75df908527f4f555fb87545400 (commit)
      from  42f5df7f5e7286001ab61a06df534db7d5230f50 (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 c707548060771b75df908527f4f555fb87545400
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Sep 5 15:43:37 2023 +0200

    Avoid GNUism in ln(1) use
    
    References #5485 in master branch (3.5.0dev)

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:
 loader/postgis.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list