From 7699f3f2b6ac938b12c42644cbc2047a369a2743 Mon Sep 17 00:00:00 2001 From: "John H. Palmieri" Date: Wed, 5 Apr 2017 18:34:46 -0700 Subject: [PATCH] trac 22756: check name of _scproxy .so file correctly for Python 3. --- build/pkgs/python3/spkg-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkgs/python3/spkg-install b/build/pkgs/python3/spkg-install index 878883fcb6e..a7667a01e37 100755 --- a/build/pkgs/python3/spkg-install +++ b/build/pkgs/python3/spkg-install @@ -71,7 +71,7 @@ build() # On OS X, test to see if _scproxy built before installing. if [ "$UNAME" = "Darwin" ]; then - if [ -z `find build -name _scproxy.so` ]; then + if [ -z `find build -name _scproxy*.so` ]; then echo >&2 "Error: the _scproxy module failed to build." exit 1 fi