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

ruby-changes:54866

From: nobu <ko1@a...>
Date: Thu, 14 Feb 2019 00:48:42 +0900 (JST)
Subject: [ruby-changes:54866] nobu:r67071 (trunk): Cleaning gems should not clean ext

nobu	2019-02-14 00:48:36 +0900 (Thu, 14 Feb 2019)

  New Revision: 67071

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67071

  Log:
    Cleaning gems should not clean ext

  Modified files:
    trunk/Makefile.in
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 67070)
+++ common.mk	(revision 67071)
@@ -662,9 +662,9 @@ distclean-ext:: ext/distclean gems/distc https://github.com/ruby/ruby/blob/trunk/common.mk#L662
 realclean-ext:: ext/realclean gems/realclean timestamp/realclean
 
 ext/clean.mk ext/distclean.mk ext/realclean.mk::
-ext/clean gems/clean:: ext/clean.mk
-ext/distclean gems/distclean:: ext/distclean.mk
-ext/realclean gems/realclean:: ext/realclean.mk
+ext/clean:: ext/clean.mk
+ext/distclean:: ext/distclean.mk
+ext/realclean:: ext/realclean.mk
 
 timestamp/clean:: ext/clean gems/clean
 timestamp/distclean:: ext/distclean gems/distclean
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 67070)
+++ Makefile.in	(revision 67071)
@@ -478,9 +478,9 @@ distclean-local:: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L478
 	-$(Q)$(RM) $(INSTALLED_LIST) $(arch_hdrdir)/ruby/config.h verconf.h
 	-$(Q)$(RMDIRS) $(arch_hdrdir)/ruby 2> /dev/null || true
 
-ext/clean.sub gems/clean.sub:: ext/clean.mk
-ext/distclean.sub gems/distclean.sub:: ext/distclean.mk
-ext/realclean.sub gems/realclean.sub:: ext/realclean.mk
+ext/clean.sub:: ext/clean.mk
+ext/distclean.sub:: ext/distclean.mk
+ext/realclean.sub:: ext/realclean.mk
 
 ext/clean.mk ext/distclean.mk ext/realclean.mk::
 	-$(Q) if [ -f $(EXTS_MK) ]; then exec $(MAKE) -f $(EXTS_MK) $(@F:.mk=); fi

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

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