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

ruby-changes:33970

From: nobu <ko1@a...>
Date: Thu, 22 May 2014 23:35:09 +0900 (JST)
Subject: [ruby-changes:33970] nobu:r46050 (trunk): extmk.rb: non-installed extensions when statick-linked-ext

nobu	2014-05-22 23:34:56 +0900 (Thu, 22 May 2014)

  New Revision: 46050

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

  Log:
    extmk.rb: non-installed extensions when statick-linked-ext
    
    * ext/extmk.rb: exclude extension libraries not to be installed if
      `--with-statick-linked-ext` is set, not only shared library is
      not built.

  Modified files:
    trunk/ext/extmk.rb
Index: ext/extmk.rb
===================================================================
--- ext/extmk.rb	(revision 46049)
+++ ext/extmk.rb	(revision 46050)
@@ -519,7 +519,7 @@ cond = proc {|ext, *| https://github.com/ruby/ruby/blob/trunk/ext/extmk.rb#L519
   }.find_all {|ext|
     with_config(ext, &cond)
   }.sort
-  if $LIBRUBYARG_SHARED.empty?
+  if $LIBRUBYARG_SHARED.empty? and CONFIG["EXTSTATIC"] == "static"
     exts.delete_if {|d| File.fnmatch?("-*", d)}
   end
 end

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

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