From e4194ea338b9515f129be6a1b98d7ff8a4b29ed9 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Tue, 19 Mar 2024 18:13:45 +0100 Subject: GNUmakefile: Use a more portable $SHELL Signed-off-by: Alejandro Colomar --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 6ae3d0149..1602c9195 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,8 +2,9 @@ # SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception -SHELL := /usr/bin/env -.SHELLFLAGS := -S bash -Eeuo pipefail -c +BASH := bash +SHELL := /usr/bin/env +.SHELLFLAGS := -S '$(BASH) -Eeuo pipefail -c' MAKEFLAGS += --no-builtin-rules -- cgit v1.2.3