shithub: libvpx

Download patch

ref: 89025585cde1e2696c134b3cb7457abd6a3c3933
parent: d73c4ac84d2caa486c1ef96ef976506a49fd2be3
author: Tom Finegan <tomfinegan@google.com>
date: Wed Mar 5 10:30:18 EST 2014

configure: Check for make

Stop configuration and report an error when make is not available.

Change-Id: I599a4c43386e3657748d5b875afb235701e6b57f

--- a/configure
+++ b/configure
@@ -160,9 +160,11 @@
     [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
 done
 
-if ! perl --version >/dev/null; then
-    die "Perl is required to build"
-fi
+for util in make perl; do
+    if ! ${util} --version >/dev/null; then
+        die "${util} is required to build."
+    fi
+done
 
 # check installed doxygen version
 doxy_version=$(doxygen --version 2>/dev/null)