summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-05 11:53:07 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-05 11:53:07 +0900
commitdf275179bde5eef92b701789b99e88ae038cdae2 (patch)
tree2a5767f1bd6ec8d1078ac2b76f68be0ae97d605b /tool/make-snapshot
parent4f938ffa35f5770af73d55e679f9524e032cbfc3 (diff)
Revert "Moved aclocal.m4 to macro directory"
This reverts commit 4a6571dbc14ee4e88c12cd9931f7695077a3ee6e, because chkbuild does not follow.
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot3
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 901ec14ff4..79289d6bfb 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -407,14 +407,13 @@ def package(vcs, rev, destdir, tmp = nil)
end
unless File.exist?("configure")
print "creating configure..."
- unless system(ENV["AUTOCONF"], "-I", "tool/m4", "-o", "configure")
+ unless system([ENV["AUTOCONF"]]*2)
puts $colorize.fail(" failed")
return
end
puts $colorize.pass(" done")
end
clean.add("autom4te.cache")
- clean.add("tool/m4/autom4te.cache")
clean.add("enc/unicode/data")
print "creating prerequisites..."
if File.file?("common.mk") && /^prereq/ =~ commonmk = IO.read("common.mk")