From 1b220be4976daa55d63cbf20dd745f9057d903ef Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 19 Oct 2009 06:04:10 +0000 Subject: * win32/Makefile.sub (enc/unicode/name2ctype.h): no need to create directory if it already exists. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ win32/Makefile.sub | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d9330d6de..2142739b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 19 15:03:31 2009 NAKAMURA Usaku + + * 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 * .gdbinit (rb_ps): dump all threads and their callstacks. based diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 5a6f18dad..b3567af16 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -877,7 +877,7 @@ lex.c: {$(srcdir)}lex.c.blt 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 -- cgit