use @varset.append() instead of @varset.send(:append)

This commit is contained in:
Josh Holtrop 2014-04-15 09:32:35 -04:00
parent f5be3a3571
commit ae0ad98075

View File

@ -164,7 +164,7 @@ module Rscons
# Add a set of construction variables or environment options. # Add a set of construction variables or environment options.
# @see VarSet#append # @see VarSet#append
def append(*args) def append(*args)
@varset.send(:append, *args) @varset.append(*args)
end end
# Build all target specified in the Environment. # Build all target specified in the Environment.