diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-02 20:27:44 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-02 20:27:44 +0200 |
| commit | f32b4fceddf698f6a33c42a866ca21c6cc202841 (patch) | |
| tree | 87361aec3097e9b6573b15199ed2abb57003abd5 /utils/makefile.python | |
| parent | 2441e242884a196a21cbf11bd7726584849553e1 (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.python | 2 |
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 |