aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-19 06:04:10 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-19 06:04:10 +0000
commit55cc90b7e260d6fc5af71c07db48b676753ff195 (patch)
tree3c132065cb8081a53af540336165d279f6359f07
parent4aa1cfc2c3e196a9434e8415c680638d914b35e1 (diff)
downloadruby-55cc90b7e260d6fc5af71c07db48b676753ff195.tar.gz
* win32/Makefile.sub (enc/unicode/name2ctype.h): no need to create
directory if it already exists. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/Makefile.sub2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d9330d6de8..2142739b95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Oct 19 15:03:31 2009 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * 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@ruby-lang.org>
* .gdbinit (rb_ps): dump all threads and their callstacks. based
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 5a6f18dadf..b3567af16f 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