From: Bernhard Reutner-Fischer Date: Thu, 15 Feb 2007 14:07:08 +0000 (-0000) Subject: - warn about missing makeinfo on the host. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3c50a6cf2a322f94e51653784c2664348af2176;p=buildroot.git - warn about missing makeinfo on the host. --- diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index bd88dcb060..81a8b8db29 100755 --- a/toolchain/dependencies/dependencies.sh +++ b/toolchain/dependencies/dependencies.sh @@ -248,7 +248,12 @@ fi; echo "gettext installed: Ok" - +if ! which makeinfo > /dev/null ; then \ + echo "makeinfo installed: FALSE" + /bin/echo -e "\n\nMost likely some packages will fail to build their documentation" + /bin/echo -e "Either install 'makeinfo' on your host or fix the respective packages" +fi +echo "makeinfo installed: Ok" #############################################################