[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-605-gb6fadaf4e

git at osgeo.org git at osgeo.org
Fri Feb 25 01:19:01 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, master has been updated
       via  b6fadaf4ece60d5143f2fe88bb66e26986be4687 (commit)
      from  e3d6a2357286acb4cc5e52c77b1e7e82e00bc00c (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 b6fadaf4ece60d5143f2fe88bb66e26986be4687
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Feb 25 10:18:08 2022 +0100

    Stop automatically configuring on top-level make
    
    References #5103

diff --git a/Makefile b/Makefile
index d27eefbe2..db75fbe81 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,12 @@
 # this file copied and adapted from PostgreSQL source
 # to allow easy build on BSD systems
 
-all install uninstall staged-install clean distclean maintainer-clean test check docs docs-install docs-uninstall utils: build/GNUmakefile
+all install uninstall staged-install clean distclean maintainer-clean test check docs docs-install docs-uninstall utils:
+	@if [ ! -f GNUmakefile ] ; then \
+		echo "You need to run the 'configure' program first. See the file"; \
+		echo "'README.postgis' for installation instructions" ; \
+		false ; \
+	fi
 	@IFS=':' ; \
 	 for dir in $$PATH; do \
 	   for prog in gmake gnumake make; do \
@@ -15,17 +20,8 @@ all install uninstall staged-install clean distclean maintainer-clean test check
 	\
 	 if [ x"$${GMAKE+set}" = xset ]; then \
 	   echo "Using GNU make found at $${GMAKE}"; \
-	   $${GMAKE} -C build/ $@ ; \
+	   $${GMAKE} $@ ; \
 	 else \
 	   echo "You must use GNU make to build PostGIS." ; \
 	   false; \
 	 fi
-
-configure: configure.ac
-	./autogen.sh
-
-build-dir:
-	mkdir -p build
-
-build/GNUmakefile: configure build-dir
-	cd build && ../configure

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

Summary of changes:
 Makefile | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list