summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = {}