diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-10 06:26:24 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-10 06:26:24 +0000 |
| commit | 6537b32a10c8fcb50df8d247514b84d250b6823f (patch) | |
| tree | c7f00fb949c0a82ad07db2936d871e65d4f72085 | |
| parent | 3b7e25a0c0346d816481d2ce293148cfcc5643df (diff) | |
| download | ruby-6537b32a10c8fcb50df8d247514b84d250b6823f.tar.gz ruby-6537b32a10c8fcb50df8d247514b84d250b6823f.tar.xz ruby-6537b32a10c8fcb50df8d247514b84d250b6823f.zip | |
* Makefile.in: use --output-file for gperf to not leave lex.c.tmp.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 2 |
2 files changed, 5 insertions, 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. diff --git a/Makefile.in b/Makefile.in index 534ec91e4..36c26e017 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" \ ) || \ |
