diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-21 01:26:02 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-21 01:26:02 +0000 |
commit | 06b7b801ff771f95ae92aaf031b2bf3d68e7bdde (patch) | |
tree | a135372fd5027b2b9f7d7d222c92c9a8c8cdf61a /bcc32 | |
parent | 57afbdb7d1eceff4a0662b01338b322dd5639902 (diff) |
* bcc32/Makefile.sub: tds files were not deleted when DESTDIR
included '\' path delimiter. [ruby-dev:26193]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bcc32')
-rw-r--r-- | bcc32/Makefile.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index bac20a830d..320ae0cc99 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -436,7 +436,7 @@ $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: rbconfig.rb post-install-ext:: $(MINIRUBY) -I$(srcdir)lib -rrbconfig -rfileutils \ - -e 'FileUtils.rm_f(Dir["$(DESTDIR)"+Config::CONFIG["archdir"]+"/**/*.tds"])' + -e "FileUtils.rm_f(Dir['$(DESTDIR)'+Config::CONFIG['archdir']+'/**/*.tds'])" clean-local:: @$(RM) ext\extinit.c ext\extinit.$(OBJEXT) *.tds *.il? $(RUBY_SO_NAME).lib |