From 729d1c93a7159408f3244bc35a5fac5644c6b997 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Thu, 5 Jun 2025 16:25:02 -0500 Subject: [PATCH] make: Fixed prettyasserts prefix -Plfs_ -> -Plfs3_ This was missing from the big lfs -> lfs3 rename, probably because it didn't actually break testing. It just prevents prettyasserts from making LFS3_ASSERT pretty. There's already been a bunch of benchmarking targeting the current hash, and we're probably going to find other missed prefixes in corners of the codebase anyways, so I'm not going to bother rebasing. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40ed3726..a04e1a98 100644 --- a/Makefile +++ b/Makefile @@ -646,10 +646,10 @@ $(BUILDDIR)/%.s: $(BUILDDIR)/%.c $(CC) -S $(CFLAGS) $< -o$@ $(BUILDDIR)/%.a.c: %.c - $(PRETTYASSERTS) -Plfs_ $< -o$@ + $(PRETTYASSERTS) -Plfs3_ $< -o$@ $(BUILDDIR)/%.a.c: $(BUILDDIR)/%.c - $(PRETTYASSERTS) -Plfs_ $< -o$@ + $(PRETTYASSERTS) -Plfs3_ $< -o$@ $(BUILDDIR)/%.t.c: %.toml ./scripts/test.py -c $< $(TESTCFLAGS) -o$@