summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 06:26:24 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 06:26:24 +0000
commitcd67b62289db0b99e6e788c18086b28b144f7960 (patch)
treec7f00fb949c0a82ad07db2936d871e65d4f72085 /Makefile.in
parent6b95829d71c0a3bb88b3263c6a7a8ef2ba059567 (diff)
* Makefile.in: use --output-file for gperf to not leave lex.c.tmp.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12506 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 534ec91e48..36c26e017f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -163,7 +163,7 @@ $(srcdir)/configure: $(srcdir)/configure.in
lex.c: keywords
( \
- gperf -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? > $@.tmp && \
+ gperf --output-file=$@.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? && \
cp $@.tmp $@ && \
mv $@.tmp "$(srcdir)/$@.blt" \
) || \