From patchwork Tue Feb 12 11:48:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: dependencies: suggest package name if hg is missing. Date: Tue, 12 Feb 2013 01:48:46 -0000 From: Luca Ceresoli X-Patchwork-Id: 219827 Message-Id: <1360669726-30288-1-git-send-email-luca@lucaceresoli.net> To: buildroot@uclibc.org Cc: Luca Ceresoli Signed-off-by: Luca Ceresoli Acked-by: Thomas Petazzoni --- support/dependencies/dependencies.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh index acba57c..1dad6eb 100755 --- a/support/dependencies/dependencies.sh +++ b/support/dependencies/dependencies.sh @@ -140,6 +140,8 @@ for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 perl tar wget cpio p /bin/echo -e "msgfmt is usually part of the gettext package in your distribution\n" elif test $prog = "svn" ; then /bin/echo -e "svn is usually part of the subversion package in your distribution\n" + elif test $prog = "hg" ; then + /bin/echo -e "hg is usually part of the mercurial package in your distribution\n" else /bin/echo -e "\n" fi