1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/mkmf/base.rb: use $INCFLAGS to add -I option. [Bug#2387]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-11-26 02:42:24 +00:00
parent 12b637a65d
commit f1be083f09
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Thu Nov 26 11:42:22 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/mkmf/base.rb: use $INCFLAGS to add -I option. [Bug#2387]
Thu Nov 26 07:17:58 2009 wanabe <s.wanabe@gmail.com> Thu Nov 26 07:17:58 2009 wanabe <s.wanabe@gmail.com>
* marshal.c (mark_dump_arg): mark str. see also [ruby-dev:39735] * marshal.c (mark_dump_arg): mark str. see also [ruby-dev:39735]

View file

@ -5,8 +5,7 @@ require 'tmpdir'
$extout = '$(topdir)/'+RbConfig::CONFIG["EXTOUT"] $extout = '$(topdir)/'+RbConfig::CONFIG["EXTOUT"]
RbConfig::CONFIG['topdir'] = CONFIG['topdir'] = File.expand_path(CONFIG['topdir']) RbConfig::CONFIG['topdir'] = CONFIG['topdir'] = File.expand_path(CONFIG['topdir'])
RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout
RbConfig::CONFIG["cppflags"] << " -I." $INCFLAGS << " -I."
CONFIG["cppflags"] << " -I."
$extout_prefix = "$(extout)$(target_prefix)/" $extout_prefix = "$(extout)$(target_prefix)/"
class TestMkmf < Test::Unit::TestCase class TestMkmf < Test::Unit::TestCase