From dc2353c9182dc000bdca1f1f39768d1621e9c455 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 28 Jun 2017 08:15:48 +0000 Subject: [PATCH] projects-dir.mk: Add SHELL = -o pipefail The target pkg-install-prereq-release ignored errors from the package manager, this fixes it. Presumably many other ignored pipe errors, let's see what this turns up. Signed-off-by: Jan Lindemann --- make/projects-dir.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make/projects-dir.mk b/make/projects-dir.mk index e5417667..4eb664ea 100644 --- a/make/projects-dir.mk +++ b/make/projects-dir.mk @@ -15,6 +15,8 @@ -include local.mk +SHELL = /bin/bash -o pipefail + ifneq ($(PROJECTS),) export PGIT_CLONE_PROJECTS = $(PROJECTS) endif