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

* tool/make-snapshot: must create configure and lex.c.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2007-12-24 18:24:15 +00:00
parent 29595e23d7
commit efd4bbde49
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Dec 25 03:19:47 2007 WATANABE Hirofumi <eban@ruby-lang.org>
* tool/make-snapshot: must create configure and lex.c.
Tue Dec 25 03:16:05 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (rb_io_s_pipe): now takes up to two arguments. allow its

View file

@ -17,7 +17,7 @@ revision=`svn export $SVNURL ruby | sed -n '$s/.*\([0-9]+\).*/\1/p'`
echo "#define RUBY_REVISION $revision" > ruby/revision.h
v=ruby-r$revision
mv ruby $v
(cd $v; sed 's/{[^{}]*}//g' common.mk | make -f - prereq srcdir=.)
(cd $v; autoconf; (sed '/lex\.c/,/^$/!d' Makefile.in; sed 's/{[^{}]*}//g' common.mk) | make -f - prereq srcdir=.)
for cmd in "bzip tarball.tar.bz2 tar cjf" "gzip tarball.tar.gz tar czf" "zip archive.zip zip -qr"; do
mesg="${cmd%%.*}" cmd="${cmd#*.}"