[前][次][番号順一覧][スレッド一覧]

ruby-changes:16380

From: yugui <ko1@a...>
Date: Fri, 18 Jun 2010 23:10:52 +0900 (JST)
Subject: [ruby-changes:16380] Ruby:r28360 (ruby_1_9_2): * Makefile.in (distclean-ext): removes directories for extensions

yugui	2010-06-18 23:10:33 +0900 (Fri, 18 Jun 2010)

  New Revision: 28360

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28360

  Log:
    * Makefile.in (distclean-ext): removes directories for extensions
      correctly.
    
    * common.mk (realclean-local): removes id.h too.

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/Makefile.in
    branches/ruby_1_9_2/common.mk

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 28359)
+++ ruby_1_9_2/ChangeLog	(revision 28360)
@@ -1,3 +1,10 @@
+Fri Jun 18 23:08:18 2010  Yuki Sonoda (Yugui)  <yugui@y...>
+
+	* 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)  <yugui@y...>
 
 	* enc/Makefile.in (realclean): has been missing. necessary
Index: ruby_1_9_2/common.mk
===================================================================
--- ruby_1_9_2/common.mk	(revision 28359)
+++ ruby_1_9_2/common.mk	(revision 28360)
@@ -398,7 +398,7 @@
 
 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
Index: ruby_1_9_2/Makefile.in
===================================================================
--- ruby_1_9_2/Makefile.in	(revision 28359)
+++ ruby_1_9_2/Makefile.in	(revision 28360)
@@ -268,7 +268,7 @@
 	    (cd "ext/$$dir" && exec $(MAKE) $(MFLAGS) $(@:-ext=)) && \
 	    case "$@" in \
 	    *distclean-ext*|*realclean-ext*) \
-		$(RMDIRS) "$$dir";; \
+		$(RMDIRS) "ext/$$dir";; \
 	    esac; \
 	done
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]