From 6007bd7fc898bed7bdcd565f3f21aecdd86b6b83 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 1 Apr 2020 10:59:51 +0200 Subject: [PATCH] makefile.python: fix (old) typo Signed-off-by: Markus Heiser --- utils/makefile.python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/makefile.python b/utils/makefile.python index fddcb223..b0f1c247 100644 --- a/utils/makefile.python +++ b/utils/makefile.python @@ -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"; \