From b499537367327ff4cbf15f40084961083f374758 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 8 Jun 2026 11:42:15 -0700 Subject: GNUmakefile: Use printf instead of ‘echo -e’ MacOS' echo doesn't support the ‘-e’ switch, but printf should work everywhere. --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index cd111a4..143afe4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -8,7 +8,7 @@ SCHEME_IMPLEMENTATION = guile .PRECIOUS: %.el define tangle = - @echo -e "\e[35mOBT\e[0m" $< + @printf "\e[35mOBT\e[0m %s\n" $< @$(EMACS) -quick -batch \ -eval "(package-initialize)" \ -load ob-tangle \ @@ -131,7 +131,7 @@ nyxt: nyxt/.config/nyxt/init.lisp $(call tangle,emacs-lisp) %.elc: %.el - @echo -e "\e[36mELC\e[0m" $< + @printf "\e[36mELC\e[0m %s\n" $< $(EMACS) -q -batch -f package-initialize -f batch-byte-compile $< %: %.org -- cgit v1.3-2-g0d8e