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

ruby-changes:36013

From: yugui <ko1@a...>
Date: Wed, 22 Oct 2014 21:19:30 +0900 (JST)
Subject: [ruby-changes:36013] yugui:r48094 (trunk): * common.mk (build-ext): avoid trying to build dynamic libraries

yugui	2014-10-22 21:19:16 +0900 (Wed, 22 Oct 2014)

  New Revision: 48094

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

  Log:
    * common.mk (build-ext): avoid trying to build dynamic libraries
      if configured --with-static-linked-ext.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48093)
+++ ChangeLog	(revision 48094)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Oct 22 21:07:32 2014  Yuki Yugui Sonoda  <yugui@y...>
+
+	* common.mk (build-ext): avoid trying to build dynamic libraries
+	  if configured --with-static-linked-ext.
+
 Wed Oct 22 20:33:33 2014  Martin Duerst <duerst@i...>
 
 	* common.mk: Fixed grammar in comment [ci skip]
Index: common.mk
===================================================================
--- common.mk	(revision 48093)
+++ common.mk	(revision 48094)
@@ -182,7 +182,7 @@ $(EXTS_MK): $(MKFILES) all-incs $(PREP) https://github.com/ruby/ruby/blob/trunk/common.mk#L182
 configure-ext: $(EXTS_MK)
 
 build-ext: $(EXTS_MK)
-	$(Q)$(MAKE) -f $(EXTS_MK) $(MFLAGS) libdir="$(libdir)" LIBRUBY_EXTS=$(LIBRUBY_EXTS) ENCOBJS="$(ENCOBJS)"
+	$(Q)$(MAKE) -f $(EXTS_MK) $(MFLAGS) libdir="$(libdir)" LIBRUBY_EXTS=$(LIBRUBY_EXTS) ENCOBJS="$(ENCOBJS)" $(EXTSTATIC)
 
 prog: program wprogram
 

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

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