[SCM] PostGIS branch master updated. 3.6.0rc2-617-g965711498
git at osgeo.org
git at osgeo.org
Thu Jun 18 11:46:23 PDT 2026
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 96571149829e3a65f8ad7b4c488b8d1ca4666137 (commit)
from bf9cc9f63a8a1557976a2518792167fada45ed2d (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 96571149829e3a65f8ad7b4c488b8d1ca4666137
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Thu Jun 18 22:39:47 2026 +0400
fuzzers: keep recursive checks on source makefile
diff --git a/fuzzers/Makefile b/fuzzers/Makefile
index 01b324312..51c4ed5e2 100644
--- a/fuzzers/Makefile
+++ b/fuzzers/Makefile
@@ -1,4 +1,5 @@
-FUZZER_SRC_DIR ?= $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
+FUZZER_MAKEFILE := $(abspath $(lastword $(MAKEFILE_LIST)))
+FUZZER_SRC_DIR ?= $(abspath $(dir $(FUZZER_MAKEFILE)))
POSTGIS_BUILD_DIR ?= $(abspath ..)
FUZZER_OUT ?= /tmp
FUZZER_WORK ?= $(FUZZER_OUT)/postgis-fuzzer-check
@@ -35,10 +36,10 @@ check:
set -e; \
if { command -v python3 >/dev/null 2>&1 && python3 -m zipfile --help >/dev/null 2>&1; } || \
{ command -v unzip >/dev/null 2>&1 && unzip -v >/dev/null 2>&1; }; then \
- $(MAKE) check-corpus; \
+ $(MAKE) -f "$(FUZZER_MAKEFILE)" check-corpus; \
else \
echo "No seed corpus zip extractor found; running fuzzer smoke check without corpus replay."; \
- $(MAKE) dummyfuzzers; \
+ $(MAKE) -f "$(FUZZER_MAKEFILE)" dummyfuzzers; \
for fuzzer in $(FUZZER_NAMES); do \
"$(FUZZER_OUT)/$${fuzzer}"; \
done; \
-----------------------------------------------------------------------
Summary of changes:
fuzzers/Makefile | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list