Toolchain: Remove dependency check for texinfo

Turns out we don't need that after all.
This commit is contained in:
Gunnar Beutner 2021-05-31 00:27:22 +02:00 committed by Linus Groh
parent 597539aa4c
commit 7dedf09f3d

View file

@ -104,12 +104,6 @@ if ! command -v patch >/dev/null; then
exit 1
fi
buildstep dependencies echo "Checking whether 'makeinfo' is available..."
if ! command -v makeinfo >/dev/null; then
buildstep dependencies echo "Please make sure to install GNU Texinfo (for the 'makeinfo' tool)."
exit 1
fi
buildstep dependencies echo "Checking whether your C compiler works..."
if ! ${CC:-cc} -o /dev/null -xc - >/dev/null <<'PROGRAM'
int main() {}