aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2013-10-08 10:03:30 +0100
committerMike McQuaid2013-10-08 10:13:04 +0100
commit8bb9308939311e87c70efabdcbd8682f1e7275db (patch)
tree79428d47d48bad2cbcb92ea9add4b048a6c9844a /Library/Formula
parent6aac425a4c1e718f64fa8f2ea937c37c9d6fdd06 (diff)
downloadhomebrew-8bb9308939311e87c70efabdcbd8682f1e7275db.tar.bz2
gmp: disable assembly when building bottles.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gmp.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb
index 19e1994aa..fb92a0c56 100644
--- a/Library/Formula/gmp.rb
+++ b/Library/Formula/gmp.rb
@@ -16,6 +16,8 @@ class Gmp < Formula
ENV.append 'ABI', '32'
# https://github.com/mxcl/homebrew/issues/20693
args << "--disable-assembly"
+ elsif build.bottle?
+ args << "--disable-assembly"
end
system "./configure", *args