summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
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: