diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 12:44:52 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 12:44:52 +0000 |
| commit | dd0b2d31956c4c99d23ae6d2da3fe7825fb2fbc7 (patch) | |
| tree | 822dbbcde87fa9dc881a76de40a0935cae97f2e7 | |
| parent | 52bb29144f80a0b2279e70a8ac7be323ed95c5c2 (diff) | |
| download | ruby-dd0b2d31956c4c99d23ae6d2da3fe7825fb2fbc7.tar.gz ruby-dd0b2d31956c4c99d23ae6d2da3fe7825fb2fbc7.tar.xz ruby-dd0b2d31956c4c99d23ae6d2da3fe7825fb2fbc7.zip | |
* tool/make-snapshot: add version number.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | tool/make-snapshot | 10 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,7 @@ +Tue Dec 25 21:44:50 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * tool/make-snapshot: add version number. + Tue Dec 25 21:32:54 2007 Koichi Sasada <ko1@atdot.net> * compile.c (iseq_compile_each): fix stack consistency error diff --git a/tool/make-snapshot b/tool/make-snapshot index b19741de7..3d3b43a54 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -13,13 +13,14 @@ fi [ -d "$1" ] || mkdir "$1" || exit 1 dest=`cd "$1"; pwd` -tmp=${TMP_DIR-/tmp}/ #ruby-snapshot-$$ +tmp="${TMP_DIR-/tmp}/ruby-snapshot-$$" mkdir -p "$tmp" -cd "$tmp" +(cd "$tmp" revision=`svn export $SVNURL ruby | sed -n '$s/[^0-9]//gp'` [ $revision ] || revision=`svn info $SVNURL | sed -n 's/Revision: //p'` echo "#define RUBY_REVISION $revision" > ruby/revision.h -v=ruby-r$revision +version=`sed -n -e '/^#define RUBY_VERSION /s/[^0-9.]//gp' ruby/version.h` +v=ruby-$version-r$revision mv ruby $v (cd $v; autoconf; (sed '/lex\.c/,/^$/!d' Makefile.in; sed 's/{[^{}]*}//g' common.mk) | make -f - prereq srcdir=.) @@ -33,4 +34,5 @@ for cmd in "bzip tarball.tar.bz2 tar cjf" "gzip tarball.tar.gz tar czf" "zip arc echo " failed" fi done -exec rm -fr $v +exec rm -fr $v) +exec rmdir "$tmp" |
