summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-03 21:42:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-03 21:42:23 +0000
commitc51e356c680c303fe143ef7aff737e444e55d6b2 (patch)
tree527fd77693d1d4a02fc320d956e7eaaa0240f99e /Makefile.in
parentedd008c9cec2888c5de682eb0eafbc0b6769ad34 (diff)
* 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
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index f00eade968..99110b5caf 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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)