makefile.python: fix (old) typo

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2020-04-01 10:59:51 +02:00
parent 916d8a9e46
commit 6007bd7fc8
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ quiet_cmd_pyenvuninstall = PYENV uninstall $2
# $2 path to folder where virtualenv take place
quiet_cmd_virtualenv = PYENV usage: $ source ./$@/bin/activate
cmd_virtualenv = \
if [ ! -d "./$(PY_ENV)" ];then \
if [ ! -d "$(PY_ENV)" ];then \
$(PYTHON) -m venv $(VTENV_OPTS) $2; \
else \
echo "PYENV using virtualenv from $2"; \