dependencies: add details about which distro package to install
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 23 Mar 2013 22:26:43 +0000 (22:26 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 24 Mar 2013 12:56:01 +0000 (13:56 +0100)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
support/dependencies/dependencies.sh

index 9d06a0d21ab19fd7866812683f33bdd86d02faf1..ab7f4a42f103f16a10786aa535bc996f8b2b7fc0 100755 (executable)
@@ -135,7 +135,13 @@ for prog in patch perl tar wget cpio python unzip rsync ${DL_TOOLS} ; do
     if ! which $prog > /dev/null ; then
        /bin/echo -e "You must install '$prog' on your build machine";
        if test $prog = "svn" ; then
-           /bin/echo -e "svn is usually part of the subversion package in your distribution"
+           /bin/echo -e "  svn is usually part of the subversion package in your distribution"
+       elif test $prog = "hg" ; then
+            /bin/echo -e "  hg is usually part of the mercurial package in your distribution"
+       elif test $prog = "zcat" ; then
+            /bin/echo -e "  zcat is usually part of the gzip package in your distribution"
+       elif test $prog = "bzcat" ; then
+            /bin/echo -e "  bzcat is usually part of the bzip2 package in your distribution"
        fi
        exit 1;
     fi