From 7687666c4511af9ca98e1699a7b4a2e2798c82e7 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 11 Nov 2007 10:21:30 +0000 Subject: report how lex.c handled. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- Makefile.in | 6 +++--- 1 file 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: -- cgit v1.2.3