Commit a47ce9d3 authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

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: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 7452b4ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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