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

ruby-changes:35044

From: nobu <ko1@a...>
Date: Sun, 10 Aug 2014 12:31:39 +0900 (JST)
Subject: [ruby-changes:35044] nobu:r47126 (trunk): common.mk: ignore timestamp directory

nobu	2014-08-10 12:31:33 +0900 (Sun, 10 Aug 2014)

  New Revision: 47126

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

  Log:
    common.mk: ignore timestamp directory
    
    * common.mk (clean-ext): ignore error on removing non-existent
      timestamp directory.

  Modified files:
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 47125)
+++ common.mk	(revision 47126)
@@ -495,7 +495,7 @@ realclean-extout: distclean-extout https://github.com/ruby/ruby/blob/trunk/common.mk#L495
 clean-ext distclean-ext realclean-ext::
 	$(Q)$(RM) $(EXTS_MK)
 	$(Q)$(RM) $(EXTOUT)/.timestamp/.*.time
-	$(Q)$(RMDIR) $(EXTOUT)/.timestamp
+	$(Q)$(RMDIR) $(EXTOUT)/.timestamp 2> $(NULL) || exit 0
 
 clean-enc distclean-enc realclean-enc: PHONY
 

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

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