From 302044858b943d724ac765af0ecbbb08b01f46db Mon Sep 17 00:00:00 2001 From: kaustav haldar Date: Mon, 21 Dec 2015 17:19:39 -0800 Subject: [PATCH] fix(Makefile): Prevent makefile from defaulting to using containers if use_containers=false Signed-off-by: kaustav haldar --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 74a9e73c65..5bbe5b00c1 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ ifneq (,$(findstring test-integration,$(MAKECMDGOALS))) include Makefile.inc include mk/main.mk -else ifeq ($(USE_CONTAINER),) +else ifneq ($(USE_CONTAINER), true) include Makefile.inc include mk/main.mk else