diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-23 13:13:53 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-23 13:13:53 +0000 |
commit | 42b3d60056f9ff4009f2398b5697e21a9b48986d (patch) | |
tree | 0a812626c6471effc0cc4ebf8e1a43eb3763c330 /ext | |
parent | 692010a2350a0dd981ed8b31ccd7a5a76dd6468a (diff) | |
download | ruby-42b3d60056f9ff4009f2398b5697e21a9b48986d.tar.gz |
* ext/extmk.rb ($ruby): add extout directory to include path.
[ruby-core:11003]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/extmk.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index 290fef9d56..15d2abb608 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -323,6 +323,7 @@ else $ruby = '$(topdir)/miniruby' + EXEEXT end $ruby << " -I'$(topdir)' -I'$(hdrdir)/lib'" +$ruby << " -I'#{$extout}'" if $extout $config_h = '$(topdir)/config.h' MTIMES = [__FILE__, 'rbconfig.rb', srcdir+'/lib/mkmf.rb'].collect {|f| File.mtime(f)} |