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

* lib/mkmf.rb (mkmf_failed): fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2005-02-22 15:39:40 +00:00
parent 9001cbdfad
commit 6b68105ab2
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed Feb 23 00:37:34 2005 Kouhei Sutou <kou@cozmixng.org>
* lib/mkmf.rb (mkmf_failed): fixed typo.
Tue Feb 22 23:52:45 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in, lib/mkmf.rb: use simple commands if available.

View file

@ -1174,7 +1174,7 @@ def init_mkmf(config = CONFIG)
dir_config("opt")
end
FailedMassage = <<MESSAGE
FailedMessage = <<MESSAGE
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
@ -1185,7 +1185,7 @@ MESSAGE
def mkmf_failed(path)
unless $makefile_created
opts = $arg_config.collect {|t, n| "\t#{t}#{"=#{n}" if n}\n"}
abort "*** #{path} failed ***\n" + FailedMassage + opts.join
abort "*** #{path} failed ***\n" + FailedMessage + opts.join
end
end