Merge pull request #2652 from kaustavha/kaustavha/fix/Makefile

fix(Makefile): Prevent makefile from using containers when $USE_CONTAINERS=false
This commit is contained in:
Jean-Laurent de Morlhon 2015-12-22 09:57:17 +01:00
commit acf2d1da4c
1 changed files with 1 additions and 1 deletions

View File

@ -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