summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-10-11 19:08:47 -0400
committerBradley Sepos <[email protected]>2019-10-11 19:08:47 -0400
commitbe83ac213ae7f51df2f02fd2ffda2176dc2ccce2 (patch)
tree937dbd217f9080a7c642390df70021ace89736bd /make
parentc0fb4255e4c7340fc8a0d43212298d1b532bdf02 (diff)
make: Reduce automake required version to 1.15.0.
We still support Ubuntu 18.04 which only has 1.15.1.
Diffstat (limited to 'make')
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index b16868538..894f52b77 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1603,7 +1603,7 @@ try:
gmake = ToolProbe( 'GMAKE.exe', 'make', 'gmake', 'make', abort=True )
autoconf = ToolProbe( 'AUTOCONF.exe', 'autoconf', 'autoconf', abort=True, minversion=[2,69,0] )
- automake = ToolProbe( 'AUTOMAKE.exe', 'automake', 'automake', abort=True, minversion=[1,16,0] )
+ automake = ToolProbe( 'AUTOMAKE.exe', 'automake', 'automake', abort=True, minversion=[1,15,0] )
libtool = ToolProbe( 'LIBTOOL.exe', 'libtool', 'libtool', abort=True )
lipo = ToolProbe( 'LIPO.exe', 'lipo', 'lipo', abort=False )
pkgconfig = ToolProbe( 'PKGCONFIG.exe', 'pkgconfig', 'pkg-config', abort=True, minversion=[0,29,2] )