From d26bd6a2fa6b61a22bba53df4b5546ffc5932829 Mon Sep 17 00:00:00 2001 From: jnasbyupgrade Date: Mon, 10 Aug 2026 14:29:20 -0500 Subject: [PATCH] Remove now-redundant local installcheck: install workaround pgxntool 2.3.0 (#31) adds this same installcheck: install edge directly in pgxntool/base.mk, fixing the check-stale-expected ordering issue this local copy worked around since #9. Declaring it twice was harmless but is now dead weight. Co-Authored-By: Claude --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index 9ae665d..f5d2ff7 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,6 @@ testdeps: test_factory install: cat_tools count_nulls -# pgxntool's check-stale-expected target (added in pgxntool 2.2.0) depends on -# installcheck but is listed before install in TEST_DEPS, and Make evaluates a -# target's prerequisites in file-parse order across stanzas -- so plain -# `make test` ran installcheck before install ever happened. Force installcheck -# to require install locally until that's fixed upstream. -installcheck: install - test: dump_test extra_clean += $(wildcard test/dump/*.log) dump_test: test/dump/run.sh test/helpers/object_table.sql $(wildcard test/dump/*.sql)