summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2f19364fbb..571479ea45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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)