mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
65a5162550
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
773 B
Batchfile
24 lines
773 B
Batchfile
@echo off
|
|
grep -qs MAJOR top.sed
|
|
if errorlevel 1 goto seen
|
|
if errorlevel 0 goto not_seen
|
|
:seen
|
|
sed -n "/VERSION /s/[^0-9.]//gp" < version.h > version.out
|
|
cut -d. -f1 version.out > major.out
|
|
cut -d. -f2 version.out > minor.out
|
|
cut -d. -f3 version.out > teeny.out
|
|
sed "s/^/s,@MAJOR@,/;s/$/,/g" major.out >> top.sed
|
|
sed "s/^/s,@MINOR@,/;s/$/,/g" minor.out >> top.sed
|
|
sed "s/^/s,@TEENY@,/;s/$/,/g" teeny.out >> top.sed
|
|
rm version.out major.out minor.out teeny.out
|
|
:not_seen
|
|
sed -f top.sed < Makefile.in > Makefile
|
|
sed -f top.sed < ext\extmk.rb.in > ext\extmk.rb
|
|
copy config_h.dj config.h
|
|
if not (%OS%) == (Windows_NT) goto LFN
|
|
copy missing\vsnprintf.c missing\vsnprint.c
|
|
copy config_s.dj config.sta
|
|
goto end
|
|
:LFN
|
|
copy config_s.dj config.status
|
|
:end
|