Skip to content
Snippets Groups Projects
Commit 6499a75c authored by Tom Finegan's avatar Tom Finegan
Browse files

Make sure diff is present at configure time.

Avoid silent failures resulting in endless build loops.

BUG=aomedia:701

Change-Id: I76d3e0bdddf473fc364abf0c956fcad5f7e3103c
parent 323d535d
No related branches found
No related tags found
2 merge requests!6Rav1e 11 yushin 1,!3Rav1e 10 yushin
......@@ -155,6 +155,10 @@ for t in ${all_targets}; do
[ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
done
if ! diff --version >/dev/null; then
die "diff missing: Try installing diffutils via your package manager."
fi
if ! perl --version >/dev/null; then
die "Perl is required to build"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment