diff options
| author | Mike McQuaid | 2011-06-22 17:47:30 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-06-22 17:48:20 +0100 |
| commit | f2e018d747a79056fb618c12d5ed922574e249fd (patch) | |
| tree | 193106b87b8ccd57a60b794e75db84d250ea391b /Library | |
| parent | 6d3c488d4a3cfbd34642172b13aaba9713254fac (diff) | |
| download | brew-f2e018d747a79056fb618c12d5ed922574e249fd.tar.bz2 | |
Return an array from options.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 33570854a..4a2b033b6 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 |
