summaryrefslogtreecommitdiff
path: root/run-bootstrap-in-chroot
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-22 14:14:02 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-22 14:14:02 +0000
commit7a4351f3de0ac9877d33b3dd5830039edaa10a25 (patch)
treedf02ac8f39078db33bb6c02bb7403524c7d50607 /run-bootstrap-in-chroot
parent6a1ccb6a479b27e374fbef8b2594eef96815709f (diff)
parentd1c481fef69128686ca52dec7143496706916ea7 (diff)
downloadmorph-7a4351f3de0ac9877d33b3dd5830039edaa10a25.tar.gz
Merge branch 'master' of gitorious.org:baserock/morph
Diffstat (limited to 'run-bootstrap-in-chroot')
-rwxr-xr-xrun-bootstrap-in-chroot8
1 files changed, 4 insertions, 4 deletions
diff --git a/run-bootstrap-in-chroot b/run-bootstrap-in-chroot
index 866e03b5..5294677f 100755
--- a/run-bootstrap-in-chroot
+++ b/run-bootstrap-in-chroot
@@ -120,10 +120,10 @@ if ! "$snapshot" || ! has_pass pass1a; then
then
tar -C "$dir" -xhf "$chrootsnapshot"
else
- debootstrap --include=build-essential,gawk,bison,flex,python,autoconf \
- --include=autopoint,automake,gettext,libtool,help2man \
- --include=texinfo,sudo,ccache,gperf \
- squeeze "$dir" "$DEBIAN_MIRROR"
+ EXTRAPACKAGES="build-essential,gawk,bison,flex,python,autoconf"
+ EXTRAPACKAGES="$EXTRAPACKAGES,autopoint,automake,gettext,libtool"
+ EXTRAPACKAGES="$EXTRAPACKAGES,help2man,texinfo,sudo,ccache,gperf"
+ debootstrap --include="$EXTRAPACKAGES" squeeze "$dir" "$DEBIAN_MIRROR"
mkdir -p "$dir/etc"
hostname > "$dir/etc/hostname"