summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-02-20 19:31:39 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-02-23 20:33:43 +0100
commita47ce9d3df148cbfbd38355c80624fb5abc78a77 (patch)
tree36cc2b1597d452265a5e9580f4b68dc86e04cd91
parent7452b4edfa1c8385d602950bcaeb2cb3afdfdf3c (diff)
downloadbuildroot-novena-a47ce9d3df148cbfbd38355c80624fb5abc78a77.tar.gz
buildroot-novena-a47ce9d3df148cbfbd38355c80624fb5abc78a77.zip
dependencies: add gzip and bzip2 as base dependencies
They are needed to uncompress the tarballs we download. bzip2, for instance, is not necessarly installed by default on basic Debian systems. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-xtoolchain/dependencies/dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh
index f5b26214d..d0190fd4d 100755
--- a/toolchain/dependencies/dependencies.sh
+++ b/toolchain/dependencies/dependencies.sh
@@ -122,7 +122,7 @@ if ! $SHELL --version 2>&1 | grep -q '^GNU bash'; then
fi;
# Check that a few mandatory programs are installed
-for prog in awk bison flex msgfmt makeinfo patch ; do
+for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 ; do
if ! which $prog > /dev/null ; then
/bin/echo -e "\nYou must install '$prog' on your build machine";
if test $prog = "makeinfo" ; then