From d3da61d1a07781a0c7930ffad47a173ebe228488 Mon Sep 17 00:00:00 2001 From: alexrp Date: Tue, 17 Jul 2012 04:09:28 +0200 Subject: [PATCH] bdw-gc: add --universal option Closes Homebrew/homebrew#13443. Signed-off-by: Misty De Meo --- Formula/bdw-gc.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/bdw-gc.rb b/Formula/bdw-gc.rb index 8051b57d90..bb4d1e7b85 100644 --- a/Formula/bdw-gc.rb +++ b/Formula/bdw-gc.rb @@ -5,7 +5,12 @@ class BdwGc < Formula url 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2.tar.gz' md5 'd17aecedef3d73e75387fb63558fa4eb' + def options + [['--universal', 'Make a 32/64-bit Intel build.']] + end + def install + ENV.universal_binary if ARGV.build_universal? system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}",