[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-547-g2e487f259
git at osgeo.org
git at osgeo.org
Wed Feb 16 16:56:52 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 2e487f25994327c630cd296e6df1d2be8ede4fd6 (commit)
from 249706dcb81f23da4e6aac1cece4873a1f17de65 (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 2e487f25994327c630cd296e6df1d2be8ede4fd6
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Feb 17 01:56:04 2022 +0100
Fix double invocation of protobuf compiler and repeated builds
Closes #5099
diff --git a/postgis/Makefile.in b/postgis/Makefile.in
index 83debcf5d..02525326e 100644
--- a/postgis/Makefile.in
+++ b/postgis/Makefile.in
@@ -219,18 +219,16 @@ $(FLATGEOBUF_LIBPATH):
PROTOCC=@PROTOCC@
# Generate Mapbox Vector Tile encoder/decoder using protobuf-c compiler
-vector_tile.pb-c.c vector_tile.pb-c.h: vector_tile.proto
+vector_tile.pb-c.c: vector_tile.proto
$(PROTOCC) -I at srcdir@ --c_out=. $<
# Generate Geobuf encoder/decoder using protobuf-c compiler
-geobuf.pb-c.c geobuf.pb-c.h: geobuf.proto
+geobuf.pb-c.c: geobuf.proto
$(PROTOCC) -I at srcdir@ --c_out=. $<
ifeq (@HAVE_PROTOBUF@,yes)
-lwgeom_out_mvt.o: vector_tile.pb-c.h
-mvt.o: vector_tile.pb-c.h
-lwgeom_out_geobuf.o: geobuf.pb-c.h
-geobuf.o: geobuf.pb-c.h
+lwgeom_out_mvt.o mvt.o vector_tile.pb-c.o: vector_tile.pb-c.c
+lwgeom_out_geobuf.o geobuf.o geobuf.pb-c.o: geobuf.pb-c.c
endif
# Borrow the $libdir substitution from PGXS but customise by running the preprocessor
-----------------------------------------------------------------------
Summary of changes:
postgis/Makefile.in | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list