diff options
| author | Adam Vandenberg | 2013-01-06 11:27:28 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-06 11:27:28 -0800 |
| commit | 67e6e85fbd270dc94f4ae1bf644405e8719fcafd (patch) | |
| tree | fb87d9aad8d239c912f68153362805afd7bb7421 | |
| parent | 85a666701f4025107cd94ac6ebe940ee763ca2c4 (diff) | |
| download | homebrew-67e6e85fbd270dc94f4ae1bf644405e8719fcafd.tar.bz2 | |
vim: inline some variables
| -rw-r--r-- | Library/Formula/vim.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Formula/vim.rb b/Library/Formula/vim.rb index 52d6f6ef7..60929c276 100644 --- a/Library/Formula/vim.rb +++ b/Library/Formula/vim.rb @@ -23,12 +23,9 @@ class Vim < Formula ENV['LUA_PREFIX'] = HOMEBREW_PREFIX language_opts = LANGUAGES.map do |language| - with_option = "with-#{language}" - without_option = "without-#{language}" - - if DEFAULT_LANGUAGES.include? language and !build.include? without_option + if DEFAULT_LANGUAGES.include? language and !build.include? "without-#{language}" "--enable-#{language}interp" - elsif build.include? with_option + elsif build.include? "with-#{language}" "--enable-#{language}interp" end end.compact |
