1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* Makefile.in (lex.c): use $? instead of $<.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-03-07 07:28:10 +00:00
parent 8627fc3c10
commit 81096d395c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Mar 7 16:22:26 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* Makefile.in (lex.c): use $? instead of $<.
Sun Mar 7 05:34:42 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: HTTPHeader keeps its header fields as an array.

View file

@ -259,7 +259,7 @@ $(srcdir)/configure: $(srcdir)/configure.in
lex.c: keywords
@-rm -f $@
gperf -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $< > $@ || \
gperf -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? > $@ || \
cp "$(srcdir)/$@" .
.y.c: