mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (SRC_EXT): should be flat.
http://twitter.com/_tad_/status/1825862632 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23479 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3b6d6b0861
commit
6575009929
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun May 17 23:23:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (SRC_EXT): should be flat.
|
||||
http://twitter.com/_tad_/status/1825862632
|
||||
|
||||
Sun May 17 23:05:05 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ruby.c (ruby_init_loadpath_safe): VARIABLE_LIBPATH is always
|
||||
|
|
|
@ -12,7 +12,7 @@ CXX_EXT = %w[cc cxx cpp]
|
|||
if File::FNM_SYSCASE.zero?
|
||||
CXX_EXT.concat(%w[C])
|
||||
end
|
||||
SRC_EXT = %w[c m] << CXX_EXT
|
||||
SRC_EXT = %w[c m].concat(CXX_EXT)
|
||||
$static = nil
|
||||
$config_h = '$(arch_hdrdir)/ruby/config.h'
|
||||
$default_static = $static
|
||||
|
|
Loading…
Reference in a new issue