From 6647ecdad15f8f401d89287c80195e4d55c3d49b Mon Sep 17 00:00:00 2001 From: Kevin Greenan Date: Sun, 2 Aug 2015 09:51:49 -0700 Subject: Fix spacing for PEP8 compliance --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 92c64cd..5386d5d 100644 --- a/setup.py +++ b/setup.py @@ -57,16 +57,16 @@ default_library_paths = [default_python_libdir] # configure_prefix="/usr" if platform_str.find("Darwin") > -1: - # - # There appears to be a bug with OS 10.9 and later where - # specifying -L/usr/lib to the linker *will not* search - # /usr/lib, but will resolve to a directory in the Xcode - # tree. - # - mac_major = int(platform.mac_ver()[0].split(".")[0]) - mac_minor = int(platform.mac_ver()[0].split(".")[1]) - if mac_major == 10 and mac_minor > 9: - configure_prefix="/usr/local" + # + # There appears to be a bug with OS 10.9 and later where + # specifying -L/usr/lib to the linker *will not* search + # /usr/lib, but will resolve to a directory in the Xcode + # tree. + # + mac_major = int(platform.mac_ver()[0].split(".")[0]) + mac_minor = int(platform.mac_ver()[0].split(".")[1]) + if mac_major == 10 and mac_minor > 9: + configure_prefix="/usr/local" # utility routines def _find_library(name): -- cgit v1.2.1