diff options
| author | Jack Nagel | 2014-08-26 15:48:16 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-08-26 15:48:16 -0500 | 
| commit | 11f880801c1ccf11a9fc2a1d0dc469dbba8b2a15 (patch) | |
| tree | 21cbdf5790027e6442c239a4b064cb68b73e86d1 /Library/Homebrew/formula_installer.rb | |
| parent | 58cb4444da8f20e4e51800af253dedeadefc0edf (diff) | |
| download | brew-11f880801c1ccf11a9fc2a1d0dc469dbba8b2a15.tar.bz2 | |
Avoid intermediate option objects
Diffstat (limited to 'Library/Homebrew/formula_installer.rb')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index dea717eda..a59874b0a 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -462,7 +462,7 @@ class FormulaInstaller    end    def build_argv -    Options.create(sanitized_ARGV_options) + options +    sanitized_ARGV_options + options.as_flags    end    def build  | 
