[postgis-tickets] [SCM] PostGIS branch win created. 3.2.0-405-g2ff1c5b36
git at osgeo.org
git at osgeo.org
Sat Jan 29 05:35:56 PST 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, win has been created
at 2ff1c5b36f17c168e1754959a282c7a3716e42c2 (commit)
- Log -----------------------------------------------------------------
commit 2ff1c5b36f17c168e1754959a282c7a3716e42c2
Author: Sandro Santilli <strk at kbt.io>
Date: Sat Jan 29 14:35:30 2022 +0100
Fix staged-install path for windows builds
Closes #5066
diff --git a/regress/Makefile.in b/regress/Makefile.in
index 9fe11f4a0..05e0c7df0 100644
--- a/regress/Makefile.in
+++ b/regress/Makefile.in
@@ -23,7 +23,14 @@ POSTGIS_MAJOR_VERSION=@POSTGIS_MAJOR_VERSION@
POSTGIS_MINOR_VERSION=@POSTGIS_MINOR_VERSION@
POSTGIS_MICRO_VERSION=@POSTGIS_MICRO_VERSION@
-REGRESS_INSTALLDIR = $(realpath $(builddir) )/00-regress-install
+# Where we put our regression installation
+# See https://trac.osgeo.org/postgis/ticket/5066
+ifeq ($(MINGWBUILD),1)
+ abs_builddir=$(shell bash -c "pwd -W")
+else
+ abs_builddir=$(shell pwd)
+endif
+REGRESS_INSTALLDIR = $(abs_builddir)/00-regress-install
# MingW hack: rather than use PGSQL_BINDIR directly, we change to the directory and
# then use "pwd" to return the path. This ensures that the returned path is in MSYS
-----------------------------------------------------------------------
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list