diff options
| author | Adam Vandenberg | 2012-02-25 21:00:28 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-25 21:00:28 -0800 |
| commit | 200c36200da7679b9bd1384dbb5ad32266d16b91 (patch) | |
| tree | deeb472147fb6ee3c0a0f59e49f8855ef927ca72 /Library/Formula/gettext.rb | |
| parent | 0568780cd067cb62ab114884e9eebdb80c1df896 (diff) | |
| download | homebrew-200c36200da7679b9bd1384dbb5ad32266d16b91.tar.bz2 | |
Don't override default -O flag.
Way back in the day, Homebrew defaulted to LLVM/-O3. A lot of stuff
failed to compile, and a lot of stuff just took forever with -O4.
We don't default this way anymore, and in fact use -Os per Apple
guidelines.
So remove these old "fixes" since they are no longer needed.
Diffstat (limited to 'Library/Formula/gettext.rb')
| -rw-r--r-- | Library/Formula/gettext.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/gettext.rb b/Library/Formula/gettext.rb index 624a2039b..41548a14f 100644 --- a/Library/Formula/gettext.rb +++ b/Library/Formula/gettext.rb @@ -1,10 +1,10 @@ require 'formula' class Gettext < Formula + homepage 'http://www.gnu.org/software/gettext/' url 'http://ftpmirror.gnu.org/gettext/gettext-0.18.1.1.tar.gz' mirror 'http://ftp.gnu.org/gnu/gettext/gettext-0.18.1.1.tar.gz' md5 '3dd55b952826d2b32f51308f2f91aa89' - homepage 'http://www.gnu.org/software/gettext/' keg_only "OS X provides the BSD gettext library and some software gets confused if both are in the library path." @@ -30,8 +30,6 @@ class Gettext < Formula def install ENV.libxml2 - ENV.O3 # Issues with LLVM & O4 on Mac Pro 10.6 - ENV.universal_binary if ARGV.build_universal? system "./configure", "--disable-dependency-tracking", "--disable-debug", |
