mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
6b95829d71
commit
cd67b62289
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Jun 10 15:26:36 2007 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* Makefile.in: use --output-file for gperf to not leave lex.c.tmp.
|
||||
|
||||
Sun Jun 10 15:11:07 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* Makefile.in, win32/Makefile.sub (XCFLAGS): -I. is needed for *.inc.
|
||||
|
|
|
@ -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" \
|
||||
) || \
|
||||
|
|
Loading…
Reference in a new issue