Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac 22756: check name of _scproxy .so file correctly for Python 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpalmieri committed Apr 6, 2017
1 parent e55ac1b commit 7699f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/pkgs/python3/spkg-install
Expand Up @@ -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
Expand Down

0 comments on commit 7699f3f

Please sign in to comment.