summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-17 10:18:31 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-17 10:18:31 -0400
commit2838fd4a4e7fa40dd9cd95c81eb852190371ec5a (patch)
tree6cf8af9dd8da5802a76c418bac02087cdd82c24b /Makefile
parent83bfed52e523ef942da82a083584a4548182aaa4 (diff)
downloadbfs-2838fd4a4e7fa40dd9cd95c81eb852190371ec5a.tar.xz
build: Make the config scripts POSIX-compliant
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e9efef3..f42c59b 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ config::
# Direct users to the new configuration system.
asan lsan msan tsan ubsan gcov lint release::
@printf 'error: `%s %s` is no longer supported. ' "${MAKE}" $@ >&2
- @printf 'Use `%s config %s=y` instead.\n' "${MAKE}" $$(echo $@ | tr '[a-z]' '[A-Z]') >&2
+ @printf 'Use `%s config %s=y` instead.\n' "${MAKE}" $$(echo $@ | tr 'a-z' 'A-Z') >&2
@false
# Print an error if `make` is run before `make config`