check-reqs: no yasm needed anymore

This commit is contained in:
K. Lange 2018-11-16 13:43:03 +09:00
parent eb156b6671
commit b42313066c

View File

@ -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