From a49be8a8e378a8b2820c7fdfde3b6a3afd688c7b Mon Sep 17 00:00:00 2001 From: yugui Date: Wed, 22 Oct 2014 12:19:16 +0000 Subject: [PATCH] * common.mk (build-ext): avoid trying to build dynamic libraries if configured --with-static-linked-ext. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ common.mk | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9bbf76fe9e..f1c7d807e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 22 21:07:32 2014 Yuki Yugui Sonoda + + * 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 * common.mk: Fixed grammar in comment [ci skip] diff --git a/common.mk b/common.mk index a228cc9c08..528c7ded66 100644 --- a/common.mk +++ b/common.mk @@ -182,7 +182,7 @@ $(EXTS_MK): $(MKFILES) all-incs $(PREP) $(RBCONFIG) $(LIBRUBY) 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