From b8a884bcee2dca52344d5ab95e634c33645e253a Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 26 Jan 2013 13:53:32 -0600 Subject: [PATCH] FormulaInstaller: wrap --build-from-source in an Option object c.f. Homebrew/homebrew#17327. --- Library/Homebrew/formula_installer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index e5feb0889c..1611111322 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -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