aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2011-09-01 13:15:04 -0700
committerAdam Vandenberg2011-09-01 13:15:04 -0700
commitedeb03552091f5d88cff674259a88d477e44c810 (patch)
tree63f6a41ea61af18e34c11614d93e05eeb4d55dbd /Library/Formula
parent4daa0571326fe5662d8239157e27e2b0b6bd586f (diff)
downloadhomebrew-edeb03552091f5d88cff674259a88d477e44c810.tar.bz2
Python 3: computed gotos are on by default in 3.2.x
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/python3.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index 5738a85b6..b9d3d1ae3 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -50,9 +50,7 @@ class Python3 < Formula
end
def install
- # --with-computed-gotos requires addressable labels in C.
- # Both gcc and LLVM support this, so switch it on.
- args = ["--prefix=#{prefix}", "--with-computed-gotos"]
+ args = ["--prefix=#{prefix}"]
if ARGV.build_universal?
args << "--enable-universalsdk=/" << "--with-universal-archs=intel"