diff options
| author | Mike McQuaid | 2011-07-29 18:36:47 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-07-29 18:36:47 +0100 |
| commit | 18446240b6bc303d09dc265babd4cbf25ae8a9d6 (patch) | |
| tree | 6d0960c7543674cec7117c7b35fed3bd1f80cecb | |
| parent | 0006013c3b9a2cf5ecd80de04af5366aa516d93b (diff) | |
| download | homebrew-18446240b6bc303d09dc265babd4cbf25ae8a9d6.tar.bz2 | |
Build from source (for now) unless on Lion.
Longer-term we'll try and use install_name_tool to fix Lion
bottles so they run fine on 10.5 and/or 10.6.
Closes #6699.
| -rw-r--r-- | Library/Homebrew/extend/ARGV.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ARGV.rb b/Library/Homebrew/extend/ARGV.rb index 01684d42f..a78073b9b 100644 --- a/Library/Homebrew/extend/ARGV.rb +++ b/Library/Homebrew/extend/ARGV.rb @@ -64,7 +64,7 @@ module HomebrewArgvExtension end def build_from_source? - return true if flag? '--build-from-source' or ENV['HOMEBREW_BUILD_FROM_SOURCE'] or MacOS.leopard? + return true if flag? '--build-from-source' or ENV['HOMEBREW_BUILD_FROM_SOURCE'] or not MacOS.lion? options = options_only options.delete '--universal' not options.empty? |
