FormulaInstaller: wrap --build-from-source in an Option object

c.f. Homebrew/homebrew#17327.
This commit is contained in:
Jack Nagel 2013-01-26 13:53:32 -06:00
parent 9a179d8b06
commit b8a884bcee

View File

@ -254,7 +254,7 @@ class FormulaInstaller
opts.concat(options) # from a dependent formula
opts.concat((tab.used_options rescue [])) # from a previous install
end
opts << '--build-from-source' # don't download bottle
opts << Option.new("--build-from-source") # don't download bottle
end
end