From ad7733c7a1a3382947faf3fb71d5dac1e60e6acc Mon Sep 17 00:00:00 2001 From: IncompententPirate Date: Fri, 6 Sep 2024 09:40:41 +0000 Subject: [PATCH] Clarify error message by adding double quotes around 'just' to reduce confusion in mk/depends.mk --- mk/depends.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/depends.mk b/mk/depends.mk index 30cf2d7..ed80f56 100644 --- a/mk/depends.mk +++ b/mk/depends.mk @@ -16,7 +16,7 @@ $(error nasm not found, install from your package manager) endif ifeq ($(shell which just),) -$(error just not found, install from crates.io or from your package manager) +$(error 'just' not found, install from crates.io or from your package manager) endif CARGO_CONFIG_VERSION=0.1.1