diff options
| author | Adam Vandenberg | 2012-11-25 09:24:24 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-11-25 09:24:24 -0800 | 
| commit | 9456793bd6afe516d9bfc327f323b0d49f4b2de6 (patch) | |
| tree | 32efa8265058bd21de0d8ee62e1f38bb88e47ea7 /Library/Formula/libidn.rb | |
| parent | f9bdce52414a6ee492f4d968aa5016483fe1eaf6 (diff) | |
| download | homebrew-9456793bd6afe516d9bfc327f323b0d49f4b2de6.tar.bz2 | |
libidn: make universal opt-in
Fixes #16098.
Diffstat (limited to 'Library/Formula/libidn.rb')
| -rw-r--r-- | Library/Formula/libidn.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/libidn.rb b/Library/Formula/libidn.rb index cbcbb19cf..7216c43d7 100644 --- a/Library/Formula/libidn.rb +++ b/Library/Formula/libidn.rb @@ -8,8 +8,10 @@ class Libidn < Formula    depends_on 'pkg-config' => :build +  option :universal +    def install -    ENV.universal_binary +    ENV.universal_binary if build.universal?      system "./configure", "--disable-dependency-tracking",                            "--prefix=#{prefix}",                            "--disable-csharp"  | 
