diff options
| author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-22 15:39:40 +0000 |
|---|---|---|
| committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-22 15:39:40 +0000 |
| commit | 47fa08bbb8fc9571386f3f2ee02a13a15e2fd0c8 (patch) | |
| tree | 40ba4adf39349f16a07e05f1d2dc5870576c5121 /lib/mkmf.rb | |
| parent | f0e25e076b3f9293b471097b8f6c953bb4d10e6a (diff) | |
| download | ruby-47fa08bbb8fc9571386f3f2ee02a13a15e2fd0c8.tar.gz ruby-47fa08bbb8fc9571386f3f2ee02a13a15e2fd0c8.tar.xz ruby-47fa08bbb8fc9571386f3f2ee02a13a15e2fd0c8.zip | |
* lib/mkmf.rb (mkmf_failed): fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
| -rw-r--r-- | lib/mkmf.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index be4b897a6..a6a88b99c 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -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 |
