remove 'm' from SO var on Linux and OSX

This commit is contained in:
Nik Martin 2020-02-26 15:39:39 -06:00
parent de8a0a21b2
commit bd0f53bcbe
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ ifeq ($(shell ${PYTHON} -c "import platform; print(platform.system())"), Windows
VENV_OPTIONS =
else
BIN = bin
SO = cpython-3$(PYTHON_VERSION_MINOR)m*.so
SO = cpython-3$(PYTHON_VERSION_MINOR)*.so
VENV_OPTIONS = --system-site-packages
endif