[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-679-g886f5b8a2

git at osgeo.org git at osgeo.org
Mon Oct 16 02:30:26 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  886f5b8a220be11a1583314e5a67722763d70e49 (commit)
      from  40bf9273f5b69b581c89f56ce48d3268a87c3e7e (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 886f5b8a220be11a1583314e5a67722763d70e49
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Oct 16 11:24:57 2023 +0200

    Rename TAGS target to "tags" (lowercase) - fix off-source-tree run

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 7d661c7ec..579b7553d 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -17,6 +17,7 @@ POSTGIS_MINOR_VERSION=@POSTGIS_MINOR_VERSION@
 POSTGIS_MICRO_VERSION=@POSTGIS_MICRO_VERSION@
 POSTGIS_FULL_VERSION=$(POSTGIS_MAJOR_VERSION).$(POSTGIS_MINOR_VERSION).$(POSTGIS_MICRO_VERSION)
 
+CTAGS = ctags
 PERL = @PERL@
 top_srcdir = @top_srcdir@
 top_builddir = @top_builddir@
@@ -149,10 +150,13 @@ distclean-local: clean-local
 		rm -f sfcgal/Makefile; \
 	fi
 
-# capitalized TAGS is to follow the GNU Coding Standards, see
+# GNU Coding Standards wants capitalized TAGS:
 # https://www.gnu.org/prep/standards/html_node/Standard-Targets.html
-TAGS:
-	ctags \
+# But for ctags a lowercase is normally used:
+# https://git.savannah.gnu.org/cgit/bash.git/tree/Makefile.in#n823
+.PHONY: tags
+tags:
+	cd $(top_srcdir) && $(CTAGS) \
 		--exclude=build \
 		--exclude=ci \
 		--exclude=doc \

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

Summary of changes:
 GNUmakefile.in | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list