summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-29 00:37:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-29 00:37:20 +0000
commit1ff896075637b8f5c92d29fbdd6afbe7ec7d032e (patch)
treea32e9c70f33c05861694927f1b30a027fefb793b
parent0d9460615803dcbbcb320a28baf9f86051a8fe88 (diff)
* ext/extmk.rb: extout is needed for also clean.
fixed: [ruby-core:08944] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/extmk.rb2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a49adb88f..a95f9ecf27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Fri Sep 29 09:29:45 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Fri Sep 29 09:36:38 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/extmk.rb: extout is needed for also clean.
+ fixed: [ruby-core:08944]
* lib/optparse.rb (parse_in_order): splat arguments to callback block.
diff --git a/ext/extmk.rb b/ext/extmk.rb
index 809f2fb038..be9cc38214 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -390,8 +390,8 @@ else
end
if $extout
+ extout = Config.expand("#{$extout}", Config::CONFIG.merge("topdir"=>$topdir))
unless $ignore
- Config.expand(extout = "#$extout", Config::CONFIG.merge("topdir"=>$topdir))
FileUtils.mkpath(extout)
end
end