Skip to content

Commit

Permalink
try using quotes for path as suggested on stackoverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Mar 4, 2024
1 parent a301c91 commit 14b283c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mxmake/tests/test_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ def test_Makefile(self, tempdir):
# Determine the executable path
ifeq ("$(VENV_ENABLED)", "true")
export PATH:=$(abspath $(VENV_FOLDER))/bin:$(PATH)
export PATH:="$(abspath $(VENV_FOLDER))/bin":$(PATH)
export VIRTUAL_ENV=$(abspath $(VENV_FOLDER))
MXENV_PYTHON=python
else
Expand Down
2 changes: 1 addition & 1 deletion src/mxmake/topics/core/mxenv.mk
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ endif

# Determine the executable path
ifeq ("$(VENV_ENABLED)", "true")
export PATH:=$(abspath $(VENV_FOLDER))/bin:$(PATH)
export PATH:="$(abspath $(VENV_FOLDER))/bin":$(PATH)
export VIRTUAL_ENV=$(abspath $(VENV_FOLDER))
MXENV_PYTHON=python
else
Expand Down

0 comments on commit 14b283c

Please sign in to comment.