* 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:
parent
9001cbdfad
commit
6b68105ab2
@ -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>
|
Tue Feb 22 23:52:45 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in, lib/mkmf.rb: use simple commands if available.
|
* configure.in, lib/mkmf.rb: use simple commands if available.
|
||||||
|
@ -1174,7 +1174,7 @@ def init_mkmf(config = CONFIG)
|
|||||||
dir_config("opt")
|
dir_config("opt")
|
||||||
end
|
end
|
||||||
|
|
||||||
FailedMassage = <<MESSAGE
|
FailedMessage = <<MESSAGE
|
||||||
Could not create Makefile due to some reason, probably lack of
|
Could not create Makefile due to some reason, probably lack of
|
||||||
necessary libraries and/or headers. Check the mkmf.log file for more
|
necessary libraries and/or headers. Check the mkmf.log file for more
|
||||||
details. You may need configuration options.
|
details. You may need configuration options.
|
||||||
@ -1185,7 +1185,7 @@ MESSAGE
|
|||||||
def mkmf_failed(path)
|
def mkmf_failed(path)
|
||||||
unless $makefile_created
|
unless $makefile_created
|
||||||
opts = $arg_config.collect {|t, n| "\t#{t}#{"=#{n}" if n}\n"}
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user