aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/build_environment.rb
diff options
context:
space:
mode:
authorJack Nagel2014-07-07 18:12:24 -0500
committerJack Nagel2014-07-07 18:12:24 -0500
commit8c4569b7c2af62983cfeb241be15d910b3aa15f4 (patch)
tree550fe2d2fc57720100cb29c0117663c966405652 /Library/Homebrew/build_environment.rb
parent48c14ee736bb6893b3b8c286031b04dd5190ee2d (diff)
downloadbrew-8c4569b7c2af62983cfeb241be15d910b3aa15f4.tar.bz2
Fix BuildEnvironment initializer
Diffstat (limited to 'Library/Homebrew/build_environment.rb')
-rw-r--r--Library/Homebrew/build_environment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/build_environment.rb b/Library/Homebrew/build_environment.rb
index c7cb7bc0e..1ac51d157 100644
--- a/Library/Homebrew/build_environment.rb
+++ b/Library/Homebrew/build_environment.rb
@@ -4,7 +4,7 @@ class BuildEnvironment
attr_accessor :proc
def initialize(*settings)
- @settings = Set.new(settings)
+ @settings = Set.new(*settings)
end
def merge(*args)