From 6d8afe24e466d9a5ac458225ff989f2d2fceb45a Mon Sep 17 00:00:00 2001 From: Gabriel Gouvine Date: Tue, 8 Aug 2023 15:18:25 +0200 Subject: [PATCH] Fix Virtualenv setup + doc flag --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c8406114..04cdc82f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ endif endif - venv = source ./venv/bin/activate + venv = . venv/bin/activate SMP_FLAGS = ifneq ($(shell which nproc 2> /dev/null),) @@ -66,8 +66,8 @@ poetry_deps: check_venv install: check_dir poetry_deps - @$(venv); ./bootstrap/ccb.py $(DEVTOOLSET_OPTION) --project=coriolis \ - --make="$(SMP_FLAGS) --doc install" + @$(venv); ./bootstrap/ccb.py $(DEVTOOLSET_OPTION) --project=coriolis --doc \ + --make="$(SMP_FLAGS) install" @echo ""; \ echo "============================================================================"; \ echo "Coriolis has been successfully built"; \