From 86b084841e0990b9911fdb81c01974a0bbd297f5 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 2 May 2024 19:03:51 -0400 Subject: Makefile: Recommend --enable-release over RELEASE=y --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2d68f20..d89f3b6 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ default: bfs # bfs used to have flag-like targets (`make release`, `make asan ubsan`, etc.). # Direct users to the new configuration system. asan lsan msan tsan ubsan gcov lint release:: - @printf 'error: `%s %s` is no longer supported. Use `./configure %s=y` instead.\n' \ - "${MAKE}" $@ $$(echo $@ | tr 'a-z' 'A-Z') >&2 + @printf 'error: `%s %s` is no longer supported. Use `./configure --enable-%s` instead.\n' \ + "${MAKE}" $@ $@ >&2 @false # Print an error if `make` is run before `./configure` -- cgit v1.2.3