aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-22 00:53:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-22 00:53:17 +0000
commit1e528da90c50447a1b5864afb445c1ee39e1e2cf (patch)
treeca3d2eaa0f3829c8a99ad06153d0016d56d80d00
parentddc3997c5864d0e77e01cb1e2325a406f12f7d86 (diff)
downloadruby-1e528da90c50447a1b5864afb445c1ee39e1e2cf.tar.gz
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
-rw-r--r--ChangeLog5
-rwxr-xr-xtool/make-snapshot1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 338c555514..b3136dd241 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/tool/make-snapshot b/tool/make-snapshot
index c6782ea647..15f223ee42 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -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(/(?<!#)\{[^{}]*\}/, "")