summaryrefslogtreecommitdiff
path: root/utils/makefile.python
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2020-04-02 20:27:44 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2020-04-02 20:27:44 +0200
commitf32b4fceddf698f6a33c42a866ca21c6cc202841 (patch)
tree87361aec3097e9b6573b15199ed2abb57003abd5 /utils/makefile.python
parent2441e242884a196a21cbf11bd7726584849553e1 (diff)
LXC: add virtualenv to LXC_BASE_PACKAGES
Commit 09a40625 adds virtualenv dependency. BTW remove deprecated --no-site-packages. Not having access to global site-packages is now the default behavior. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/makefile.python')
-rw-r--r--utils/makefile.python2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/makefile.python b/utils/makefile.python
index 49944442e..df16acbbf 100644
--- a/utils/makefile.python
+++ b/utils/makefile.python
@@ -30,7 +30,6 @@ PYLINT_RC ?= .pylintrc
TEST_FOLDER ?= ./tests
TEST ?= .
-VTENV_OPTS = "--no-site-packages"
PY_ENV = ./$(LXC_ENV_FOLDER)local/py$(PY)
PY_ENV_BIN = $(PY_ENV)/bin
PY_ENV_ACT = . $(PY_ENV_BIN)/activate
@@ -41,6 +40,7 @@ ifeq ($(OS),Windows_NT)
PY_ENV_ACT = $(PY_ENV_BIN)/activate
endif
+VTENV_OPTS ?=
ifeq ($(PYTHON),python)
VIRTUALENV = virtualenv
else