lib/mkmf.rb: fix for if config["libdir"] is nil.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37410 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b2bbfb3e18
commit
072ab753ec
@ -1,3 +1,7 @@
|
|||||||
|
Fri Nov 2 03:23:37 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/mkmf.rb: fix for if config["libdir"] is nil.
|
||||||
|
|
||||||
Thu Nov 1 23:06:01 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Thu Nov 1 23:06:01 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* tool/make-snapshot: fix wrong regexp for releasing preview.
|
* tool/make-snapshot: fix wrong regexp for releasing preview.
|
||||||
|
@ -2315,7 +2315,7 @@ site-install-rb: install-rb
|
|||||||
$extout ||= nil
|
$extout ||= nil
|
||||||
$extout_prefix ||= nil
|
$extout_prefix ||= nil
|
||||||
|
|
||||||
@libdir_basename = config["libdir"][/\A\$\(exec_prefix\)\/(.*)/, 1] || "lib"
|
@libdir_basename = config["libdir"] && config["libdir"][/\A\$\(exec_prefix\)\/(.*)/, 1] or "lib"
|
||||||
|
|
||||||
$arg_config.clear
|
$arg_config.clear
|
||||||
dir_config("opt")
|
dir_config("opt")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user