diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-01 10:59:51 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-01 10:59:51 +0200 |
| commit | 6007bd7fc898bed7bdcd565f3f21aecdd86b6b83 (patch) | |
| tree | 66c48afbfed98d1ca9787c4c6cb1b2bbb716b08b /utils | |
| parent | 916d8a9e46f6bebbbf85fb0116f527b70e74c31c (diff) | |
makefile.python: fix (old) typo
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils')
| -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 fddcb223f..b0f1c247a 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"; \ |