summaryrefslogtreecommitdiff
path: root/run-bootstrap-in-chroot
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-01-17 17:41:10 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-01-17 17:41:10 +0000
commit99f06853351b7e70c653106662c328117814c760 (patch)
tree8a4f93690fba62027ac03750d5bdb393045afe13 /run-bootstrap-in-chroot
parent35d77de0bd185776630344973a9cc6c8265e3458 (diff)
downloadmorph-99f06853351b7e70c653106662c328117814c760.tar.gz
Avoid bc as a dependency for baserock-bootstrap
We want to avoid having to have bc in the bootstrap environment, since it's yet another thing to install there, and to build in the bootstrap process. bc is only used to compute the number of parallel make jobs. We can approximate the answer easily with expr (but need integer arithmetic so the result is slightly different).
Diffstat (limited to 'run-bootstrap-in-chroot')
-rwxr-xr-xrun-bootstrap-in-chroot2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-bootstrap-in-chroot b/run-bootstrap-in-chroot
index ff880dd7..cdcf0612 100755
--- a/run-bootstrap-in-chroot
+++ b/run-bootstrap-in-chroot
@@ -11,7 +11,7 @@ mkdir "$dir"
debootstrap \
--include=build-essential,\
-bc,gawk,bison,python,autoconf,autopoint,automake,gettext,libtool,\
+gawk,bison,python,autoconf,autopoint,automake,gettext,libtool,\
help2man,texinfo,sudo \
squeeze "$dir" "$mirror"