1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* Makefile.in (clean-rdoc): Don't use \ in variable expantion.

BSD make treats it as an escape character.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-10-03 21:42:23 +00:00
parent edd008c9ce
commit c51e356c68
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Mon Oct 4 06:40:24 2010 NARUSE, Yui <naruse@ruby-lang.org>
* Makefile.in (clean-rdoc): Don't use \ in variable expantion.
BSD make treats it as an escape character.
Mon Oct 4 00:01:53 2010 wanabe <s.wanabe@gmail.com>
* tool/config.sub: revert r29320, r29324, r29347, r29354, r29365

View file

@ -307,10 +307,10 @@ clean-enc distclean-enc realclean-enc:
clean-rdoc distclean-rdoc realclean-rdoc:
@echo $(@:-rdoc=ing) rdoc; \
$(RMALL) $(RDOCOUT:/=\)
$(RMALL) $(RDOCOUT)
clean-capi distclean-capi realclean-capi:
@echo $(@:-capi=ing) capi; \
$(RMALL) $(CAPIOUT:/=\)
$(RMALL) $(CAPIOUT)
ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)