summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-23 13:13:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-23 13:13:53 +0000
commit5223238afc5d7ef672e4456f9f269945271d51b8 (patch)
tree0a812626c6471effc0cc4ebf8e1a43eb3763c330
parent422ae38a9f37f80949f5942fc6a58f5492d748f2 (diff)
downloadruby-5223238afc5d7ef672e4456f9f269945271d51b8.tar.gz
ruby-5223238afc5d7ef672e4456f9f269945271d51b8.tar.xz
ruby-5223238afc5d7ef672e4456f9f269945271d51b8.zip
* ext/extmk.rb ($ruby): add extout directory to include path.
[ruby-core:11003] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/extmk.rb1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7aed21ce6..8062d97eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Mon Apr 23 22:09:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Mon Apr 23 22:14:42 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/extmk.rb ($ruby): add extout directory to include path.
+ [ruby-core:11003]
* lib/mkmf.rb (libpathflag): not to append RPATHFLAG to current
directory.
diff --git a/ext/extmk.rb b/ext/extmk.rb
index 290fef9d5..15d2abb60 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)}