From 4798e545c969cecad058f47d615be5f9ee5519bd Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 19 May 2017 21:04:43 -0500 Subject: [PATCH] Add -s flag to nested make calls --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 390603095..3c2b781fb 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,9 @@ HOST_ENV=${OS}-$(shell uname -m) DEVENV=devenv$(shell pwd | sed 's/\//-/g') DEVENV_IMAGE=wombatant/devenv ifneq ($(shell which gmake),) - MAKE=gmake + MAKE=gmake -s else - MAKE=make + MAKE=make -s endif ifneq ($(shell which docker 2>&1),) ifeq ($(shell docker inspect --format="{{.State.Status}}" ${DEVENV} 2>&1),running)