1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/mkmf.rb (create_makefile): use puts instead of print.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-01-29 03:22:55 +00:00
parent a0248a2ba1
commit 896d768290

View file

@ -1739,7 +1739,7 @@ def create_makefile(target, srcprefix = nil)
mfile = open("Makefile", "wb")
conf = configuration(srcprefix)
conf = yield(conf) if block_given?
mfile.print(conf)
mfile.puts(conf)
mfile.print "
libpath = #{($DEFLIBPATH|$LIBPATH).join(" ")}
LIBPATH = #{libpath}