Kaydet (Commit) ce189e4e authored tarafından Ronald Oussoren's avatar Ronald Oussoren

A test that should test for osx >= 10.4.0 actually tested for os versions <=…

A test that should test for osx >= 10.4.0 actually tested for os versions <= 10.4. The end result is that
a universal ("fat") build will claim to be a single-architecture on on OSX 10.5 (Leopard).

This patch fixes this issue.
üst 3903f50f
...@@ -106,7 +106,7 @@ def get_platform (): ...@@ -106,7 +106,7 @@ def get_platform ():
osname = "macosx" osname = "macosx"
if (release + '.') < '10.4.' and \ if (release + '.') >= '10.4.' and \
get_config_vars().get('UNIVERSALSDK', '').strip(): get_config_vars().get('UNIVERSALSDK', '').strip():
# The universal build will build fat binaries, but not on # The universal build will build fat binaries, but not on
# systems before 10.4 # systems before 10.4
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment