diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-20 12:22:48 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-20 12:22:48 +0000 |
| commit | fdb5c5e28de29952c4fc2988b38bbd1294855ce8 (patch) | |
| tree | 30442566ddb3b5475038383c3dff60694f2388d2 | |
| parent | d64069488c7659407484603934e3129b0ce6571a (diff) | |
| download | ruby-fdb5c5e28de29952c4fc2988b38bbd1294855ce8.tar.gz ruby-fdb5c5e28de29952c4fc2988b38bbd1294855ce8.tar.xz ruby-fdb5c5e28de29952c4fc2988b38bbd1294855ce8.zip | |
* ext/extmk.rb: rm -rf $extout, not extout.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/extmk.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Mar 20 21:21:03 2004 WATANABE Hirofumi <eban@ruby-lang.org> + + * ext/extmk.rb: rm -rf $extout, not extout. + Sat Mar 20 15:25:36 2004 Dave Thomas <dave@pragprog.com> * lib/rdoc/generators/template/html/html.rb (RDoc::Page): Force diff --git a/ext/extmk.rb b/ext/extmk.rb index 427313bd5..4abe6a119 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -320,7 +320,7 @@ if $ignore Dir.chdir ".." if $clean Dir.rmdir('ext') rescue nil - FileUtils.rm_rf(extout) if $extout + FileUtils.rm_rf($extout) if $extout end exit end |
