diff options
| author | Adam Vandenberg | 2012-02-25 22:11:21 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-25 22:11:21 -0800 |
| commit | 827fa7f51a785a4063ef24c9a02bbd44538ed120 (patch) | |
| tree | 7e92e1a0d45c8bf6fdfb7cb13aa7527874d68e30 /Library/Formula | |
| parent | 759e28685dd763128ff991761444b84dc275de93 (diff) | |
| download | homebrew-827fa7f51a785a4063ef24c9a02bbd44538ed120.tar.bz2 | |
Python: add more references for bug
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/python.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 06efe7b99..6aa76cecc 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -40,8 +40,10 @@ class Python < Formula skip_clean ['bin', 'lib'] def install - # Python requires -fwrapv for proper Decimal division. See: + # Python requires -fwrapv for proper Decimal division with Clang. See: + # https://github.com/mxcl/homebrew/pull/10487 # http://stackoverflow.com/questions/7590137/dividing-decimals-yields-invalid-results-in-python-2-5-to-2-7 + # https://trac.macports.org/changeset/87442 ENV.append_to_cflags "-fwrapv" if build_framework? and ARGV.include? "--static" |
