From e282a8027b7da4d3cd7d7364d29c5f20c4f0095f Mon Sep 17 00:00:00 2001 From: Andrew <14946103+imaandrew@users.noreply.github.com> Date: Fri, 29 Aug 2025 22:01:22 -0400 Subject: [PATCH] regenerate hooks whenever genhooks file is updated --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 2947767..84ef0da 100755 --- a/configure.py +++ b/configure.py @@ -152,7 +152,7 @@ def build(self) -> None: variables={"libs": f"-lpm-{ver}", "map": f"{BUILDDIR}/fp-{ver}.map"}, ) - n.build(f"{HOOKSDIR}/{ver}/{HOOKS}", rule="genhooks", inputs=ELF) + n.build(f"{HOOKSDIR}/{ver}/{HOOKS}", rule="genhooks", inputs=ELF, implicit="genhooks") n.build(BIN, rule="objcopy", inputs=ELF, implicit=f"{HOOKSDIR}/{ver}/{HOOKS}")