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 | 774ec2e110b7e3f55841ee220b4bba0b93b79c8e (patch) | |
tree | 1097ecd461aeb23bd2ace2799ad0f4d3c0416f21 /bcc32 | |
parent | ebe08e51bdc976d0cd21ade32c280fb2860518a5 (diff) | |
download | ruby-774ec2e110b7e3f55841ee220b4bba0b93b79c8e.tar.gz ruby-774ec2e110b7e3f55841ee220b4bba0b93b79c8e.tar.xz ruby-774ec2e110b7e3f55841ee220b4bba0b93b79c8e.zip |
* 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: http://svn.ruby-lang.org/repos/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 e01573e8f..0c2fe7cdf 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 |