summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-07-05 10:48:09 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-07-05 15:30:43 +0200
commit7cbebbc48c26ddfb18da23ffba356744a5592ea6 (patch)
tree2040cf5c2061287607ce7712d7b1b7b5cf6fa15c
parent197006a41c1a0450bf6350d5742e186b5b0c69de (diff)
downloadbuildroot-novena-7cbebbc48c26ddfb18da23ffba356744a5592ea6.tar.gz
buildroot-novena-7cbebbc48c26ddfb18da23ffba356744a5592ea6.zip
Add 'bc' in the mandatory dependencies
Since a few kernel releases, having 'bc' installed is mandatory to build the kernel. See commit https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=70730bca1331fc50c3caacaea00439de1325bd6e of the kernel. Since this tool is generally available by default in distributions, and we're unlikely to see version-specific problems with it, we just check for it to be installed in support/dependencies/dependencies.sh. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rwxr-xr-xsupport/dependencies/dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 0b44c5afb..61a4140ab 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -132,7 +132,7 @@ fi;
# Check that a few mandatory programs are installed
missing_progs="no"
-for prog in patch perl tar wget cpio python unzip rsync ${DL_TOOLS} ; do
+for prog in patch perl tar wget cpio python unzip rsync bc ${DL_TOOLS} ; do
if ! which $prog > /dev/null ; then
/bin/echo -e "You must install '$prog' on your build machine";
missing_progs="yes"