summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 05:47:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 05:47:12 +0000
commitf85a060b910fa7dc04d6369ca131f566b5732ec2 (patch)
treeec2c965c41c51d9604588f8ed8d1920e63beaf81 /ext
parente310addeb1e19ce3f7a5fa2b532a88e4d829768b (diff)
downloadruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.tar.gz
ruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.tar.xz
ruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.zip
* Makefile.in, win32/Makefile.sub (XCFLAGS): -I. is needed for *.inc.
* ext/extmk.rb (parse_args): add also topdir to mflags. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12504 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index d4be9fc53..17b918d1b 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -289,7 +289,7 @@ def parse_args()
$extout = '$(topdir)/'+$extout
RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout
$extout_prefix = $extout ? "$(extout)$(target_prefix)/" : ""
- $mflags << "extout=#$extout" << "extout_prefix=#$extout_prefix"
+ $mflags << "topdir=#$topdir" << "extout=#$extout" << "extout_prefix=#$extout_prefix"
end
end