summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-17 09:32:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-17 09:32:44 +0000
commita7de3755047fb697e0b3d292a3713145c7e04447 (patch)
treeb80ecde24215c2e02357b34e4065cc4fa99f0f02 /Makefile.in
parent1b45a27a8912afeda2ae3e352886276c78b8df74 (diff)
* Makefile.in (lex.c): show commands if Q is not set.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index bb28dde78c..ce4d71d0b1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -243,10 +243,10 @@ incs: id.h
lex.c: defs/keywords
@\
if cmp -s $(srcdir)/defs/lex.c.src $?; then \
- set -x; \
+ [ $(Q) ] && echo copying $@ || set -x; \
$(CP) $(srcdir)/lex.c.blt $@; \
else \
- set -x; \
+ [ $(Q) ] && echo generating $@ || set -x; \
gperf -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? > $@.tmp && \
$(MV) $@.tmp $@ && \
$(CP) $? $(srcdir)/defs/lex.c.src && \