summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 02:42:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 02:42:55 +0000
commite5862835f8a23147d6f5b9bb352df06a773cd3e4 (patch)
tree9c619fb796ec84ea6384136e6548319c821fb887 /Makefile.in
parentd70d4b00d89d6616493e0c9a4926172b3978611a (diff)
downloadruby-e5862835f8a23147d6f5b9bb352df06a773cd3e4.tar.gz
ruby-e5862835f8a23147d6f5b9bb352df06a773cd3e4.tar.xz
ruby-e5862835f8a23147d6f5b9bb352df06a773cd3e4.zip
* Makefile.in (enc/unicode/name2ctype.h): explicitly ignores the
result of diff. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 68f2c772c..fa4288845 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); \