[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-717-gc49ab54d2

git at osgeo.org git at osgeo.org
Tue Apr 12 00:35: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, master has been updated
       via  c49ab54d2c3f1e502c8f47907a100ddaa0a87018 (commit)
      from  b1359fa3258740fba126bf6fcc5d49c68f0c585d (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 c49ab54d2c3f1e502c8f47907a100ddaa0a87018
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Apr 12 00:12:11 2022 +0200

    Fix handling of RUNTESTFLAGS make argument with installcheck
    
    Closes #5130

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 5ecc286ab..b27471be8 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -68,14 +68,14 @@ check-no-trailing-blanks:
 installcheck: installcheck-base installcheck-upgrade
 
 installcheck-base:
-	RUNTESTFLAGS="$(RUNTESTFLAGS) --extension" $(MAKE) check-regress
+	$(MAKE) check-regress RUNTESTFLAGS="$(RUNTESTFLAGS) --extension"
 
 # only run upgrade test if RUNTESTFLAGS was not already doing that
 installcheck-upgrade: installcheck-upgrade-byfunc
 	if test -z `echo "$(RUNTESTFLAGS)" | grep -- --upgrade`; then \
-		RUNTESTFLAGS="$(RUNTESTFLAGS) --extension \
-			--upgrade-path unpackaged--$(POSTGIS_MAJOR_VERSION).$(POSTGIS_MINOR_VERSION).$(POSTGIS_MICRO_VERSION)" \
-			$(MAKE) check-regress; \
+		$(MAKE) check-regress \
+			RUNTESTFLAGS="$(RUNTESTFLAGS) --extension \
+			--upgrade-path unpackaged--$(POSTGIS_MAJOR_VERSION).$(POSTGIS_MINOR_VERSION).$(POSTGIS_MICRO_VERSION)"; \
 	fi
 
 # only run upgrade test if RUNTESTFLAGS was not already doing that

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

Summary of changes:
 GNUmakefile.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list