mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (create_makefile): should point correct path to
ruby.h and defines.h. [ruby-core:21570] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
62734f6db5
commit
a0947ecd75
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Jan 27 03:23:43 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (create_makefile): should point correct path to
|
||||
ruby.h and defines.h. [ruby-core:21570]
|
||||
|
||||
Mon Jan 26 16:00:40 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* array.c (rb_ary_aset): fixed arguments evaluation order.
|
||||
|
|
|
@ -1784,7 +1784,7 @@ site-install-rb: install-rb
|
|||
if File.exist?(depend)
|
||||
mfile.print("###\n", *depend_rules(File.read(depend)))
|
||||
else
|
||||
headers = %w[ruby.h defines.h]
|
||||
headers = %w[$(hdrdir)/ruby.h $(hdrdir)/ruby/defines.h]
|
||||
if RULE_SUBST
|
||||
headers.each {|h| h.sub!(/.*/, &RULE_SUBST.method(:%))}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue