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:
parent
a0248a2ba1
commit
896d768290
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue