From a7a26fe56b0b72bb2bb85ae6fb048e028e8d2927 Mon Sep 17 00:00:00 2001 From: yugui Date: Fri, 18 Jun 2010 14:10:33 +0000 Subject: * Makefile.in (distclean-ext): removes directories for extensions correctly. * common.mk (realclean-local): removes id.h too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ Makefile.in | 2 +- common.mk | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fe605f879a..4149af8845 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Jun 18 23:08:18 2010 Yuki Sonoda (Yugui) + + * Makefile.in (distclean-ext): removes directories for extensions + correctly. + + * common.mk (realclean-local): removes id.h too. + Fri Jun 18 01:33:21 2010 Yuki Sonoda (Yugui) * enc/Makefile.in (realclean): has been missing. necessary diff --git a/Makefile.in b/Makefile.in index 82d7dcb71c..ce8fcb3a65 100644 --- a/Makefile.in +++ b/Makefile.in @@ -268,7 +268,7 @@ clean-ext distclean-ext realclean-ext:: (cd "ext/$$dir" && exec $(MAKE) $(MFLAGS) $(@:-ext=)) && \ case "$@" in \ *distclean-ext*|*realclean-ext*) \ - $(RMDIRS) "$$dir";; \ + $(RMDIRS) "ext/$$dir";; \ esac; \ done diff --git a/common.mk b/common.mk index c66355bc74..8efdbc3dd0 100644 --- a/common.mk +++ b/common.mk @@ -398,7 +398,7 @@ distclean-extout: clean-extout realclean:: realclean-ext realclean-local realclean-enc realclean-golf realclean-extout realclean-local:: distclean-local - @$(RM) parse.c parse.h lex.c newline.c revision.h + @$(RM) parse.c parse.h lex.c newline.c revision.h id.h realclean-ext:: realclean-golf: distclean-golf realclean-extout: distclean-extout -- cgit v1.2.3