diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-19 23:44:00 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-19 23:44:00 +0000 |
commit | 9d468b9ad252c6e47d8d3726e1c154a867816388 (patch) | |
tree | 1097ecd461aeb23bd2ace2799ad0f4d3c0416f21 /bcc32 | |
parent | 19310ddc6e0f6c1f5c7f2249cc61c057d333143f (diff) |
* common.mk (NULLCMD): dummy command.
* bcc32/Makefile.sub (post-install-*): Borland make cannot ignore
command-less double-colon rules. [ruby-dev:29676]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bcc32')
-rw-r--r-- | bcc32/Makefile.sub | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index e01573e8f5..0c2fe7cdf6 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -436,17 +436,17 @@ $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: rbconfig.rb . $(icondirs) $(srcdir)win32 post-install-bin:: - @exit > $@ + @$(NULLCMD) post-install-lib:: - @exit > $@ + @$(NULLCMD) post-install-ext-comm:: - @exit > $@ + @$(NULLCMD) post-install-ext-arch:: - @exit > $@ + @$(NULLCMD) post-install-man:: - @exit > $@ + @$(NULLCMD) post-install-doc:: - @exit > $@ + @$(NULLCMD) clean-local:: @$(RM) ext\extinit.c ext\extinit.$(OBJEXT) *.tds *.il? $(RUBY_SO_NAME).lib |