Merge pull request #628 from nikmartin/linuxBuild

remove 'm' from SO var on Linux and OSX
This commit is contained in:
Andrew Senetar 2020-03-04 19:34:49 -06:00 committed by GitHub
commit c4a6958ef0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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