diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-11 15:53:07 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-11 15:53:07 +0000 |
commit | 812fc57a9a6140d547214e094807e8ddce621a53 (patch) | |
tree | 544eafae9cf507b94b469b6aa317d5ec5e24633f /lib/mkmf.rb | |
parent | 5937e8d5d6628cc387cf0f16eec7beec4eff6c07 (diff) | |
download | ruby-812fc57a9a6140d547214e094807e8ddce621a53.tar.gz |
* lib/mkmf.rb (create_makefile): missing newline.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index bbf84eeea0..2443f928ac 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -2005,7 +2005,7 @@ site-install-rb: install-rb mfile.print "\n\n" if makedef mfile.print "$(DEFFILE): #{origdef}\n" - mfile.print "\t$(ECHO) generating $@\n\t$(Q) \\" + mfile.print "\t$(ECHO) generating $@\n\t$(Q) \\\n" mfile.print "\t$(RUBY) #{makedef} #{origdef} > $@\n\n" end |