aboutsummaryrefslogtreecommitdiffstats
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-05 04:30:04 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-05 09:26:57 +0900
commit4a6571dbc14ee4e88c12cd9931f7695077a3ee6e (patch)
treee45d37f47b478dc196c25d0c9e142d22896c0c8a /tool/make-snapshot
parent21d0b40de2897ac2e98104cb3d33cd374a4402ee (diff)
downloadruby-4a6571dbc14ee4e88c12cd9931f7695077a3ee6e.tar.gz
Moved aclocal.m4 to macro directory
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 79289d6bfb..901ec14ff4 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -407,13 +407,14 @@ def package(vcs, rev, destdir, tmp = nil)
end
unless File.exist?("configure")
print "creating configure..."
- unless system([ENV["AUTOCONF"]]*2)
+ unless system(ENV["AUTOCONF"], "-I", "tool/m4", "-o", "configure")
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")