From 878976eccf34de81b03611915485ff22ed0f819f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 25 Apr 2025 15:54:51 -0400 Subject: Check for debugedit --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fd51f8d3..35e5fd2f 100644 --- a/Makefile +++ b/Makefile @@ -169,6 +169,8 @@ check-utilities: check-c-compiler || { printf '\033[31;1m%s\033[m\n' "I couldn't find 'nm' on your system! Try installing the package 'binutils' with your package manager."; exit 1; } @which awk 2>/dev/null >/dev/null \ || { printf '\033[31;1m%s\033[m\n' "I couldn't find 'awk' on your system! Try installing the package 'awk' with your package manager."; exit 1; } + @which debugedit 2>/dev/null >/dev/null \ + || { printf '\033[33;1m%s\033[m\n' "I couldn't find 'debugedit' on your system! Try installing the package 'debugedit' with your package manager. (It's not required though)"; exit 1; } install-files: build/bin/tomo build/lib/$(LIB_FILE) build/lib/$(AR_FILE) check-utilities @if ! echo "$$PATH" | tr ':' '\n' | grep -qx "$(PREFIX)/bin"; then \ -- cgit v1.2.3