summaryrefslogtreecommitdiff
path: root/mkconfig.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-07 16:33:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-07 16:33:08 +0000
commitd1cb9e75d054d06f0a80aeb112b894e82952c6d0 (patch)
tree125731f69051512ba26caaa86c09f7d305efa03d /mkconfig.rb
parentb06a278942c0041fd4b81df2ac3c10a29eb40a21 (diff)
* array.c (Init_Array): #to_s to be an alias to #inspect.
[EXPERIMENTAL] [ruby-dev:29520] * hash.c (Init_Hash): ditto. * lib/mkmf.rb (create_makefile): replace "print array" by "print *array". * mkconfig.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10879 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mkconfig.rb')
-rw-r--r--mkconfig.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/mkconfig.rb b/mkconfig.rb
index 9de524c785..c0ebe96e7e 100644
--- a/mkconfig.rb
+++ b/mkconfig.rb
@@ -106,7 +106,8 @@ if $so_name
v_fast << " CONFIG[\"RUBY_SO_NAME\"] = \"" + $so_name + "\"\n"
end
-print v_fast, v_others
+print *v_fast
+print *v_others
print <<EOS
CONFIG["ruby_version"] = "$(MAJOR).$(MINOR)"
CONFIG["rubylibdir"] = "$(libdir)/ruby/$(ruby_version)"