From 82fc7527d4162110720893cbb59fcbd202fb92b2 Mon Sep 17 00:00:00 2001 From: Tobias Falkenstein Date: Thu, 4 Feb 2021 14:59:57 +0100 Subject: [PATCH] tooling: Fix in Makefile.all for builds with VTD --- Makefile.all | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.all b/Makefile.all index d296ec6b9..12bea219b 100644 --- a/Makefile.all +++ b/Makefile.all @@ -140,8 +140,9 @@ CONAN_OPTIONS += -o cloe:with_engine=False endif ifeq (${WITH_VTD},1) -ALL_PKGS := $(filter-out plugins/vtd, ${ALL_PKGS}) CONAN_OPTIONS += -o cloe:with_vtd=True +else +ALL_PKGS := $(filter-out plugins/vtd, ${ALL_PKGS}) endif ifeq (${BUILD_TESTS},0) @@ -249,7 +250,7 @@ help:: echo " Options:" echo " USE_NPROC=(0|1) to build $(shell nproc) packages simultaneously (default=0)" echo " WITH_ENGINE=(0|1) to build and deploy cloe-engine (default=1)" - echo " WITH_VTD=(0|1) to build and deploy cloe-plugin-vtd (default=1)" + echo " WITH_VTD=(0|1) to build and deploy cloe-plugin-vtd (default=0)" echo " BUILD_TESTS=(0|1) to build and run unit tests (default=1)" echo echo " Defines:"