From: Thomas Huth Date: Mon, 5 Jul 2021 08:25:42 +0000 (+0200) Subject: Makefile: Remove /usr/bin/env wrapper from the SHELL variable X-Git-Tag: v6.1.0-rc0~39^2~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc05439334061f6adc04e4a044d490f961e7e0c3;p=thirdparty%2Fqemu.git Makefile: Remove /usr/bin/env wrapper from the SHELL variable The wrapper should not be needed here (it's not the shebang line of a shell script), and it is causing trouble on Haiku where "env" resides in a different directory. Reported-by: Richard Zak Signed-off-by: Thomas Huth Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20210705082542.936856-1-thuth@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/Makefile b/Makefile index 30f19d33bb3..6c36330eef8 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ SRC_PATH=. # we have explicit rules for everything MAKEFLAGS += -rR -SHELL = /usr/bin/env bash -o pipefail +SHELL = bash -o pipefail # Usage: $(call quiet-command,command and args,"NAME","args to print") # This will run "command and args", and either: