diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-06 16:40:42 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-06 16:40:42 +0200 |
commit | d5b0bb4bc835a5f3efb8761696dd43b1df5d60ad (patch) | |
tree | cd9b2085e31e0d681d6db98dbea4863632b31b57 /toolchain/dependencies/dependencies.sh | |
parent | eb1cd08a9be7b085076c14e3fd4507b33c786cc1 (diff) | |
download | buildroot-novena-d5b0bb4bc835a5f3efb8761696dd43b1df5d60ad.tar.gz buildroot-novena-d5b0bb4bc835a5f3efb8761696dd43b1df5d60ad.zip |
dependencies: we need tar and wget as well
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/dependencies/dependencies.sh')
-rwxr-xr-x | toolchain/dependencies/dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index 146e08023..68b275176 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 gzip bzip2 perl ; do +for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 perl tar wget ; do if ! which $prog > /dev/null ; then /bin/echo -e "\nYou must install '$prog' on your build machine"; if test $prog = "makeinfo" ; then |