diff options
| author | Jack Nagel | 2014-08-13 11:09:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-13 11:09:57 -0500 |
| commit | c5a888fb3ac504bb08848b260d7ebc534e903c49 (patch) | |
| tree | 1e3d73936fe464d24877d26873c22b5ea67485cb /Library/Homebrew/software_spec.rb | |
| parent | 5c1c9e655055bf5004d849546506d148acde6a07 (diff) | |
| download | brew-c5a888fb3ac504bb08848b260d7ebc534e903c49.tar.bz2 | |
Always pass an Options instance to the BuildOptions constructor
Diffstat (limited to 'Library/Homebrew/software_spec.rb')
| -rw-r--r-- | Library/Homebrew/software_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/software_spec.rb b/Library/Homebrew/software_spec.rb index c595a4596..e88975a73 100644 --- a/Library/Homebrew/software_spec.rb +++ b/Library/Homebrew/software_spec.rb @@ -34,7 +34,7 @@ class SoftwareSpec @bottle_specification = BottleSpecification.new @patches = [] @options = Options.new - @build = BuildOptions.new(ARGV.options_only, options) + @build = BuildOptions.new(Options.coerce(ARGV.options_only), options) end def owner= owner |
