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

ruby-changes:13617

From: usa <ko1@a...>
Date: Mon, 19 Oct 2009 15:04:26 +0900 (JST)
Subject: [ruby-changes:13617] Ruby:r25400 (trunk): * win32/Makefile.sub (enc/unicode/name2ctype.h): no need to create

usa	2009-10-19 15:04:10 +0900 (Mon, 19 Oct 2009)

  New Revision: 25400

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

  Log:
    * win32/Makefile.sub (enc/unicode/name2ctype.h): no need to create
      directory if it already exists.

  Modified files:
    trunk/ChangeLog
    trunk/win32/Makefile.sub

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 25399)
+++ ChangeLog	(revision 25400)
@@ -1,3 +1,8 @@
+Mon Oct 19 15:03:31 2009  NAKAMURA Usaku  <usa@r...>
+
+	* win32/Makefile.sub (enc/unicode/name2ctype.h): no need to create
+	  directory if it already exists.
+
 Mon Oct 19 11:34:38 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* .gdbinit (rb_ps): dump all threads and their callstacks.  based
Index: win32/Makefile.sub
===================================================================
--- win32/Makefile.sub	(revision 25399)
+++ win32/Makefile.sub	(revision 25400)
@@ -877,7 +877,7 @@
 	copy $(?:/=\) $@
 
 enc/unicode/name2ctype.h: {$(srcdir)}enc/unicode/name2ctype.h.blt
-	@md $(@D:/=\)
+	@if not exist $(@D:/=\) md $(@D:/=\)
 	copy $(?:/=\) $(@:/=\)
 
 $(OBJS): {$(hdrdir)/ruby}win32.h

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

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