summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-03-23 22:26:43 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-03-24 13:56:01 +0100
commitb2406e4a7852cadb5cfb5af59fd6a437bdc3b0eb (patch)
treeff0f1b2360073c506ee2e2c3ce095d43bf0b47b1 /support
parent3a8dbba84d39ac20dc61ce3bc9180cfb164e4cc2 (diff)
downloadbuildroot-novena-b2406e4a7852cadb5cfb5af59fd6a437bdc3b0eb.tar.gz
buildroot-novena-b2406e4a7852cadb5cfb5af59fd6a437bdc3b0eb.zip
dependencies: add details about which distro package to install
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/dependencies/dependencies.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 9d06a0d21..ab7f4a42f 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -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