summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-06 12:49:08 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-07 08:44:37 +0900
commit6f9d5fafe040cb02a1278fbfcdcb8063d564824c (patch)
treeb11c7e653b7d57019f35ad7ac5624cf3e854539f /tool/make-snapshot
parentaee77901310389462c0971e7c45f7c19410f3371 (diff)
Moved Makefile.in under template
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot3
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 3e90adba48..8b60ee21cb 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -389,7 +389,8 @@ def package(vcs, rev, destdir, tmp = nil)
File.open("#{defaults}/ruby.rb", "w") {}
miniruby = ENV['MINIRUBY'] + " -I. -I#{extout} -rcross"
baseruby = ENV["BASERUBY"]
- mk = IO.read("Makefile.in").gsub(/^@.*\n/, '')
+ mk = (IO.read("template/Makefile.in") rescue IO.read("Makefile.in")).
+ gsub(/^@.*\n/, '')
vars = {
"EXTOUT"=>extout,
"PATH_SEPARATOR"=>File::PATH_SEPARATOR,