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

ruby-changes:45653

From: nobu <ko1@a...>
Date: Mon, 27 Feb 2017 15:39:33 +0900 (JST)
Subject: [ruby-changes:45653] nobu:r57726 (trunk): clean more

nobu	2017-02-27 15:39:28 +0900 (Mon, 27 Feb 2017)

  New Revision: 57726

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

  Log:
    clean more
    
    * Makefile.in (clean-local): remove debug symbol directories on
      Mac OS.
    
    * common.mk (clean-ext): remove parent directories of timestamp
      directory.

  Modified files:
    trunk/Makefile.in
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 57725)
+++ common.mk	(revision 57726)
@@ -563,7 +563,7 @@ realclean-extout: distclean-extout https://github.com/ruby/ruby/blob/trunk/common.mk#L563
 clean-ext distclean-ext realclean-ext::
 	$(Q)$(RM) $(EXTS_MK)
 	$(Q)$(RM) $(TIMESTAMPDIR)/.*.time $(TIMESTAMPDIR)/.$(arch).time $(TIMESTAMPDIR)/$(arch)/.time
-	$(Q)$(RMDIR) $(TIMESTAMPDIR)/$(arch) $(TIMESTAMPDIR) 2> $(NULL) || exit 0
+	$(Q)$(RMDIRS) $(TIMESTAMPDIR)/$(arch) 2> $(NULL) || exit 0
 
 clean-enc distclean-enc realclean-enc: PHONY
 
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 57725)
+++ Makefile.in	(revision 57726)
@@ -408,7 +408,7 @@ clean-local:: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L408
 	$(Q)$(RM) ext/extinit.c ext/extinit.$(OBJEXT) ext/ripper/y.output \
 		enc/encinit.c enc/encinit.$(OBJEXT)
 	-$(Q)$(RM) $(pkgconfig_DATA)
-	-$(Q)$(RMALL) ruby-runner$(EXEEXT) ruby-runner.h ruby-runner.*/
+	-$(Q)$(RMALL) ruby-runner$(EXEEXT) ruby-runner.h *.dSYM
 
 distclean-local::
 	$(Q)$(RM) ext/config.cache $(RBCONFIG) Doxyfile

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

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