hv: set SHELL in top-level Makefile

Explicitly set the SHELL variable in the top-level Makefile. This ensures that
'echo -e' as used in the Makefile behaves correctly on various systems. It does
require /bin/bash to be present but that is probably true on many systems.

Tracked-On: #5588
Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
This commit is contained in:
Geoffroy Van Cutsem 2020-12-07 11:16:23 +01:00 committed by wenlingz
parent b87070f95a
commit 7a4b811a63
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
# acrn-hypervisor/Makefile
# Explicitly set the shell to be used
SHELL := /bin/bash
# global helper variables
T := $(CURDIR)