diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-10 03:27:54 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-10 03:27:54 +0000 |
| commit | be3329ffaa26c90fc0cdc6806bea7772359a410c (patch) | |
| tree | a10baf435960632258051c60ade6482edff67270 | |
| parent | a80fa4b4d25912cafdba9a68fc7947f7c7a673cf (diff) | |
| download | ruby-be3329ffaa26c90fc0cdc6806bea7772359a410c.tar.gz ruby-be3329ffaa26c90fc0cdc6806bea7772359a410c.tar.xz ruby-be3329ffaa26c90fc0cdc6806bea7772359a410c.zip | |
* win32/Makefile.sub (config.h): passes LDFLAGS to rbconfig.rb so
that extconf.rb could refer it. [ruby-core:22725]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | win32/Makefile.sub | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Mar 10 12:27:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * win32/Makefile.sub (config.h): passes LDFLAGS to rbconfig.rb so + that extconf.rb could refer it. [ruby-core:22725] + Tue Mar 10 11:36:32 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * iseq.c (prepare_iseq_build): too few arguments to function diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 441e61469..5c155b400 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -562,7 +562,7 @@ s,@DEFS@,$(DEFS),;t t s,@CPPFLAGS@,$(CPPFLAGS),;t t s,@CXXFLAGS@,$(CXXFLAGS),;t t s,@FFLAGS@,$(FFLAGS),;t t -s,@LDFLAGS@,,;t t +s,@LDFLAGS@,$(LDFLAGS),;t t s,@LIBS@,$(LIBS),;t t s,@exec_prefix@,$${prefix},;t t s,@prefix@,$(prefix),;t t |
