shithub: libvpx

Download patch

ref: 4b41800d497b3e768269db0c63acb5136c7a3a99
parent: 86f786a256cae54db2750d6aae81658be38bb79d
author: James Zern <jzern@google.com>
date: Tue Mar 18 14:19:16 EDT 2014

Revert "configure: Check for make"

This reverts commit 89025585cde1e2696c134b3cb7457abd6a3c3933.

This check breaks BSD builds and isn't useful through the configure
process. The README describes the build environment requirements (GNU
make).

Change-Id: I25f8a9c1640909412ab405dbd09a1c4d93e5a511

--- a/configure
+++ b/configure
@@ -161,11 +161,9 @@
     [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
 done
 
-for util in make perl; do
-    if ! ${util} --version >/dev/null; then
-        die "${util} is required to build."
-    fi
-done
+if ! perl --version >/dev/null; then
+    die "Perl is required to build"
+fi
 
 
 if [ "`cd ${source_path} && pwd`" != "`pwd`" ]; then
--