aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-30 06:01:58 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-30 06:01:58 +0000
commit9556d9333aabe3328259e41404b706571026b399 (patch)
tree7149a3c21192bff901dc424b5caaeae08fc39ffc
parent38ada9fe878c649e80bf8c1ae835bc855240192c (diff)
downloadruby-9556d9333aabe3328259e41404b706571026b399.tar.gz
* instruby.rb (install): add arguments explicitly to "super".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--instruby.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 13af04d607..32d5cbe740 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Nov 30 14:58:33 2004 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * instruby.rb (install): add arguments explicitly to "super".
+
Tue Nov 30 00:49:08 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_eval): [ruby-core:03856]
diff --git a/instruby.rb b/instruby.rb
index c4ab168d6b..984a992b3b 100644
--- a/instruby.rb
+++ b/instruby.rb
@@ -59,7 +59,7 @@ include FileUtils::NoWrite if $dryrun
def install(src, dest, options = {})
options[:preserve] = true
- super
+ super src, dest, options
end
$made_dirs = {}