summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Huth2021-07-05 10:25:42 +0200
committerPaolo Bonzini2021-07-05 19:20:46 +0200
commitbc05439334061f6adc04e4a044d490f961e7e0c3 (patch)
tree738cb28865b68ae5ae9189c1b3b03653f8ce4098 /Makefile
parentMerge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-202... (diff)
downloadqemu-bc05439334061f6adc04e4a044d490f961e7e0c3.tar.gz
qemu-bc05439334061f6adc04e4a044d490f961e7e0c3.tar.xz
qemu-bc05439334061f6adc04e4a044d490f961e7e0c3.zip
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 <richard.j.zak@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210705082542.936856-1-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 30f19d33bb..6c36330eef 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: