From f3fdf03a5979cd865d51c1e06a3f6fc67a0f1b9b Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 25 May 2016 08:20:03 -0400 Subject: [PATCH] Makefile: prefer bash https://github.com/opencontainers/runtime-spec/issues/454 Signed-off-by: Vincent Batts --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0dc4b8785..379a35ce0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ +SHELL ?= $(shell command -v bash 2>/dev/null) DOCKER ?= $(shell command -v docker 2>/dev/null) PANDOC ?= $(shell command -v pandoc 2>/dev/null) ifeq "$(strip $(PANDOC))" ''