summaryrefslogtreecommitdiffstats
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
commit2cffea41c6db4926129ec4f79fb9d6e299aadf77 (patch)
tree125731f69051512ba26caaa86c09f7d305efa03d /mkconfig.rb
parent87d4cb2553dc6ef97d67320e80567962d0b6c767 (diff)
downloadruby-2cffea41c6db4926129ec4f79fb9d6e299aadf77.tar.gz
ruby-2cffea41c6db4926129ec4f79fb9d6e299aadf77.tar.xz
ruby-2cffea41c6db4926129ec4f79fb9d6e299aadf77.zip
* 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: http://svn.ruby-lang.org/repos/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 9de524c78..c0ebe96e7 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)"