From c16034f1de34953e07c5c17c0b47d72b36d7e3c6 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 11 Dec 2025 09:30:51 +0100 Subject: [PATCH] support/dependencies: improve error message "Fix you PATH" not only has a typo, but isn't very clear. Turn it into "Fix your PATH environment variable". Fixes: https://gitlab.com/buildroot.org/buildroot/-/issues/151 Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard (cherry picked from commit f59bf34164de2bd3573f758844282a85ffb3cf3c) Signed-off-by: Thomas Perale --- support/dependencies/dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh index 2843e3c5d5..9c2aeaf23f 100755 --- a/support/dependencies/dependencies.sh +++ b/support/dependencies/dependencies.sh @@ -41,7 +41,7 @@ case ":${PATH:-unset}:" in (*" "*|*"${TAB}"*|*"${NL}"*) printf "\n" printf "Your PATH contains spaces, TABs, and/or newline (\\\n) characters.\n" - printf "This doesn't work. Fix you PATH.\n" + printf "This doesn't work. Fix your PATH environment variable.\n" exit 1 ;; esac