summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--win32/Makefile.sub2
2 files changed, 6 insertions, 1 deletions
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 <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 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