aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/john-jumbo.rb4
1 files changed, 3 insertions, 1 deletions
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