Skip to content
Snippets Groups Projects
Commit 55791d4c authored by Trevor Wennblom's avatar Trevor Wennblom Committed by Adam Vandenberg
Browse files

Coerce flags to an array in `remove_make_var!`


This is needed for Ruby 1.9.x compatibility, but we still don't support
running Homebrew with anything other than a system provided 1.8.[67].

Fixes Homebrew/homebrew#6546

Signed-off-by: default avatarAdam Vandenberg <flangy@gmail.com>
parent e3e7831b
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,8 @@ module StringInreplaceExtension
# Removes variable assignments completely.
def remove_make_var! flags
# Next line is for Ruby 1.9.x compatibility
flags = [flags] unless flags.kind_of? Array
flags.each do |flag|
# Also remove trailing \n, if present.
gsub! Regexp.new("^#{flag}[ \\t]*=(.*)$\n?"), ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment