From: Roman Bolshakov Date: Tue, 25 Aug 2020 20:27:55 +0000 (+0300) Subject: configure: Test if $make actually exists X-Git-Tag: v6.0.0-rc0~180^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e2c76bd3ff2e81738195bdcc6bfdb8b2ddc7649;p=thirdparty%2Fqemu.git configure: Test if $make actually exists configure doesn't detect if $make is installed on the build host. This is also helpful for hosts where an alias for make is used, i.e. configure would fail if gmake is not present on macOS. Reviewed-by: Daniel P. Berrangé Signed-off-by: Roman Bolshakov Reviewed-by: Thomas Huth Message-Id: <20200825202755.50626-5-r.bolshakov@yadro.com> Signed-off-by: Laurent Vivier --- diff --git a/configure b/configure index 3f823ed1637..c20ed86ff35 100755 --- a/configure +++ b/configure @@ -1875,6 +1875,10 @@ if test -z "$python" then error_exit "Python not found. Use --python=/path/to/python" fi +if ! has "$make" +then + error_exit "GNU make ($make) not found" +fi # Note that if the Python conditional here evaluates True we will exit # with status 1 which is a shell 'false' value.