From b42313066c5460a804d0521266d0a9d26f780508 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Fri, 16 Nov 2018 13:43:03 +0900 Subject: [PATCH] check-reqs: no yasm needed anymore --- util/check-reqs.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/util/check-reqs.sh b/util/check-reqs.sh index 428f032f..094eface 100755 --- a/util/check-reqs.sh +++ b/util/check-reqs.sh @@ -32,11 +32,6 @@ if ! which xorriso >/dev/null; then RET=1 fi -if ! which yasm >/dev/null; then - echo "yasm is required to build some assembly sources" - RET=1 -fi - if ! which autoconf >/dev/null; then echo "autoconf is required to build GCC cross-compiler" RET=1 @@ -67,11 +62,6 @@ if ! cpp <(echo "#include \"mpfr.h\"") >/dev/null 2>/dev/null; then RET=1 fi -if ! cpp <(echo "#include \"mpfr.h\"") >/dev/null 2>/dev/null; then - echo "MPFR headers are required to build GCC cross-compiler" - RET=1 -fi - if ! cpp <(echo "#include \"mpc.h\"") >/dev/null 2>/dev/null; then echo "MPC headers are required to build GCC cross-compiler" RET=1