From 95f6237e18f5eb37f3e2df58b438575894e4d9f6 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 15 Jan 2015 10:19:48 +0000 Subject: john-jumbo: don't use -march=native for bottles. Closes #35883. Closes #35897. Signed-off-by: Mike McQuaid --- Library/Formula/john-jumbo.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Formula/john-jumbo.rb b/Library/Formula/john-jumbo.rb index 940408110..0a2ef5cc2 100644 --- a/Library/Formula/john-jumbo.rb +++ b/Library/Formula/john-jumbo.rb @@ -35,7 +35,9 @@ class JohnJumbo < Formula def install cd "src" do - system "./configure" + args = [] + args << "--disable-native-macro" if build.bottle? + system "./configure", *args system "make", "clean" system "make", "-s", "CC=#{ENV.cc}" end -- cgit v1.2.3