diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-06 04:32:49 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-06 04:32:49 +0000 |
| commit | ce8634e1e1e54911b90d925c997499c838011708 (patch) | |
| tree | 442b1260e80361ffb525d54f4b559768941eec62 /ext | |
| parent | c5b2063c25294e6aa61618e06a0d611c11ed4278 (diff) | |
| download | ruby-ce8634e1e1e54911b90d925c997499c838011708.tar.gz ruby-ce8634e1e1e54911b90d925c997499c838011708.tar.xz ruby-ce8634e1e1e54911b90d925c997499c838011708.zip | |
* ext/extmk.rb: get rid of side effect of Config.expand, patched by
<tttt01@infoseek.jp> (ruby-bugs:PR#597)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index af52d97b1..7d49f49e3 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -317,7 +317,7 @@ exts |= Dir.glob("#{ext_prefix}/*/**/MANIFEST").collect {|d| } unless $extension if $extout - Config.expand(extout = $extout, Config::CONFIG.merge("topdir"=>$topdir)) + Config.expand(extout = "#$extout", Config::CONFIG.merge("topdir"=>$topdir)) if $install Config.expand(dest = "#{$destdir}#{$rubylibdir}") FileUtils.cp_r(extout+"/.", dest, :verbose => true, :noop => $dryrun) |
