From c8b7048233f84c62ece9212888578f16a93ad1b3 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 26 Feb 2023 09:57:19 +0100 Subject: [PATCH] multiple-outputs.sh: Make _assignFirst message more accurate --- pkgs/build-support/setup-hooks/multiple-outputs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/multiple-outputs.sh b/pkgs/build-support/setup-hooks/multiple-outputs.sh index 61e2ee7643f7..118fd21efd0c 100644 --- a/pkgs/build-support/setup-hooks/multiple-outputs.sh +++ b/pkgs/build-support/setup-hooks/multiple-outputs.sh @@ -20,7 +20,7 @@ _assignFirst() { if [ -n "${!_var-}" ]; then eval "${varName}"="${_var}"; return; fi done echo - echo "error: _assignFirst: could not find a non-empty variable to assign to ${varName}." + echo "error: _assignFirst: could not find a non-empty variable whose name to assign to ${varName}." echo " The following variables were all unset or empty:" echo " $*" if [ -z "${out:-}" ]; then