From f2e018d747a79056fb618c12d5ed922574e249fd Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 22 Jun 2011 17:47:30 +0100 Subject: [PATCH] Return an array from options. --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 33570854a5..4a2b033b6b 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -211,7 +211,7 @@ class Formula def caveats; nil end # any e.g. configure options for this package - def options; end + def options; [] end # patches are automatically applied after extracting the tarball # return an array of strings, or if you need a patch level other than -p1