[前][次][番号順一覧][スレッド一覧]

ruby-changes:33805

From: nobu <ko1@a...>
Date: Fri, 9 May 2014 14:53:04 +0900 (JST)
Subject: [ruby-changes:33805] nobu:r45886 (trunk): extmk.rb: fix extstatic

nobu	2014-05-09 14:52:57 +0900 (Fri, 09 May 2014)

  New Revision: 45886

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45886

  Log:
    extmk.rb: fix extstatic
    
    * ext/extmk.rb: fix variable name for --extstatic option.

  Modified files:
    trunk/ext/extmk.rb
Index: ext/extmk.rb
===================================================================
--- ext/extmk.rb	(revision 45885)
+++ ext/extmk.rb	(revision 45886)
@@ -523,7 +523,7 @@ Dir::chdir('ext') https://github.com/ruby/ruby/blob/trunk/ext/extmk.rb#L523
 hdrdir = $hdrdir
 $hdrdir = ($top_srcdir = relative_from(srcdir, $topdir = "..")) + "/include"
 exts.each do |d|
-  $static = $force_static ? true : $static_ext[target]
+  $static = $force_static ? true : $static_ext[d]
 
   if $ignore or !$nodynamic or $static
     extmake(d) or abort

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]