From d712c310e88744ad8dc6803a341725a0a0a04b96 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Wed, 21 Feb 2018 10:32:17 -0700 Subject: [PATCH] Make: remove -e from subdirectory command in gmake, -e gives precedence to variables defined in the environment. this argument disables appending to CFLAGS or CXXFLAGS when they are set in the environment and breaks our make configuration. Change-Id: Id395e7edc4b243bd3805d7f5fdb3456d94893952 Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/400863 Tested-by: SPDK Automated Test System Reviewed-by: Jim Harris Reviewed-by: Daniel Verkamp --- mk/spdk.subdirs.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/spdk.subdirs.mk b/mk/spdk.subdirs.mk index 30415bb87..6de1e97ef 100644 --- a/mk/spdk.subdirs.mk +++ b/mk/spdk.subdirs.mk @@ -32,6 +32,6 @@ # $(DIRS-y) : - $(Q)$(MAKE) -e -C $@ S=$S$(S:%=/)$@ $(MAKECMDGOALS) $(MAKESUBDIRFLAGS) + $(Q)$(MAKE) -C $@ S=$S$(S:%=/)$@ $(MAKECMDGOALS) $(MAKESUBDIRFLAGS) install: all $(DIRS-y)