Browse Source

makefile.python: fix (old) typo

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 5 years ago
parent
commit
6007bd7fc8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/makefile.python

+ 1 - 1
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";              \