From bd0f53bcbe463c48fe141b73af13542da36d82ba Mon Sep 17 00:00:00 2001 From: Nik Martin Date: Wed, 26 Feb 2020 15:39:39 -0600 Subject: [PATCH] remove 'm' from SO var on Linux and OSX --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 04b295be..2ef1cc49 100644 --- a/Makefile +++ b/Makefile @@ -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