From b55c4210ef178af98ddd3ba7fc2f4be117dbafb4 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 25 Aug 2009 02:42:55 +0000 Subject: [PATCH] * Makefile.in (enc/unicode/name2ctype.h): explicitly ignores the result of diff. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e981b162f7..514cfa631b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 25 11:42:49 2009 Nobuyoshi Nakada + + * Makefile.in (enc/unicode/name2ctype.h): explicitly ignores the + result of diff. + Tue Aug 25 02:16:37 2009 Nobuyoshi Nakada * configure.in (DLDFLAGS): use linker_flag and changed undefined diff --git a/Makefile.in b/Makefile.in index 68f2c772ca..fa4288845d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -221,7 +221,7 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd set -x; \ sed '/^#ifdef USE_UNICODE_PROPERTIES/,/^#endif/d' $? | gperf $(NAME2CTYPE_OPTIONS) > $@-1.h && \ gperf $(NAME2CTYPE_OPTIONS) < $? > $@-2.h && \ - diff -DUSE_UNICODE_PROPERTIES $@-1.h $@-2.h > $@.tmp; \ + diff -DUSE_UNICODE_PROPERTIES $@-1.h $@-2.h > $@.tmp || :; \ $(MV) $@.tmp $@ && \ $(CP) $? $(?:.kwd=.src) && \ $(CP) $@ $(?:.kwd=.h.blt); \