Commit 4b41800d authored by James Zern's avatar James Zern
Browse files

Revert "configure: Check for make"

This reverts commit 89025585.

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
Showing with 3 additions and 5 deletions
...@@ -161,11 +161,9 @@ for t in ${all_targets}; do ...@@ -161,11 +161,9 @@ for t in ${all_targets}; do
[ -f ${source_path}/${t}.mk ] && enable_feature ${t} [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
done done
for util in make perl; do if ! perl --version >/dev/null; then
if ! ${util} --version >/dev/null; then die "Perl is required to build"
die "${util} is required to build." fi
fi
done
if [ "`cd ${source_path} && pwd`" != "`pwd`" ]; then if [ "`cd ${source_path} && pwd`" != "`pwd`" ]; then
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment