From cd67b62289db0b99e6e788c18086b28b144f7960 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 10 Jun 2007 06:26:24 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 69c66309c9..38958ecd1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jun 10 15:26:36 2007 Tanaka Akira + + * Makefile.in: use --output-file for gperf to not leave lex.c.tmp. + Sun Jun 10 15:11:07 2007 Nobuyoshi Nakada * Makefile.in, win32/Makefile.sub (XCFLAGS): -I. is needed for *.inc. 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" \ ) || \