From: Bradley Sepos Date: Fri, 11 Oct 2019 23:08:47 +0000 (-0400) Subject: make: Reduce automake required version to 1.15.0. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be83ac213ae7f51df2f02fd2ffda2176dc2ccce2;p=handbrake make: Reduce automake required version to 1.15.0. We still support Ubuntu 18.04 which only has 1.15.1. --- 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] )