diff options
| author | Xu Cheng | 2016-07-15 15:03:58 +0800 |
|---|---|---|
| committer | Xu Cheng | 2016-07-15 19:57:23 +0800 |
| commit | 7452dcf5081d727eb163944d74ceda0d69f84332 (patch) | |
| tree | fdf5c3bf5c5d08deeed541ff0db80a4b3da2a4b5 /Library/Homebrew/formulary.rb | |
| parent | 2e747aa910ccfd645388a52517f285047a3276fe (diff) | |
| download | brew-7452dcf5081d727eb163944d74ceda0d69f84332.tar.bz2 | |
ARGV#resolved_formulae: also load build options
Diffstat (limited to 'Library/Homebrew/formulary.rb')
| -rw-r--r-- | Library/Homebrew/formulary.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 38f71c85a..c53262db9 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -227,7 +227,7 @@ class Formulary tap = tab.tap spec ||= tab.spec - if tap.nil? + f = if tap.nil? factory(rack.basename.to_s, spec) else begin @@ -237,6 +237,8 @@ class Formulary factory(rack.basename.to_s, spec) end end + f.build = tab + f end # Return a Formula instance directly from contents |
