summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-11 10:21:30 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-11 10:21:30 +0000
commit7687666c4511af9ca98e1699a7b4a2e2798c82e7 (patch)
tree58721cbc88a3a194759e8d551ab2886d55420faa /Makefile.in
parentefd8303bc39d07a2bb20c891bf1778077c437e7e (diff)
report how lex.c handled.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 96212279c5..582ec01014 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -169,12 +169,12 @@ $(srcdir)/configure: $(srcdir)/configure.in
# * XFS has a mtime with fractional part
lex.c: keywords
if test -f $@ && test -z "`find $? -newer $@ -print`"; then \
- touch $@; \
+ ( touch $@ && echo $@ touched. ) \
elif test -f $(srcdir)/lex.c && test -z "`find $? -newer $(srcdir)/lex.c -print`"; then \
- cp $(srcdir)/lex.c $@; \
+ ( cp $(srcdir)/lex.c $@ && echo $@ copied. ) \
else \
( gperf --output-file=$@.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? && cp $@.tmp $@ ) || \
- ( test -f $@ && touch $@ ) \
+ ( test -f $@ && touch $@ && echo $@ touched after gperf fail. ) \
fi
.y.c: