make-snapshot: CONFIGURE

* tool/make-snapshot (package): add default CONFIGURE name to
  follow r50039.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-03-22 00:53:17 +00:00
parent ddc3997c58
commit 1e528da90c
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,7 @@
Sun Mar 22 09:51:29 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
Sun Mar 22 09:53:15 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* tool/make-snapshot (package): add default CONFIGURE name to
follow r50039.
* tool/make-snapshot (package): substitute configuration variables
in Makefile.in instead of passing by the command line, and make

View File

@ -304,6 +304,7 @@ def package(vcs, rev, destdir, tmp = nil)
"BASERUBY"=>baseruby,
"BOOTSTRAPRUBY"=>baseruby,
"PWD"=>Dir.pwd,
"CONFIGURE"=>"configure",
}
mk.gsub!(/@([A-Za-z_]\w*)@/) {vars[$1] || ENV[$1]}
mk << commonmk.gsub(/(?<!#)\{[^{}]*\}/, "")