summaryrefslogtreecommitdiffstats
path: root/bin/chroot-installation.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2013-01-12 01:25:01 +0100
committerHolger Levsen <holger@layer-acht.org>2013-01-12 01:25:01 +0100
commit9c314c2785d604b2bdcb7dea11017ea404c14038 (patch)
tree7caac4081e4d5ac2cc577bd8e57756e8e22f3358 /bin/chroot-installation.sh
parent981e3a2b00f3ac7dd6f1c091956bcdff78105ecb (diff)
downloadjenkins.debian.net-9c314c2785d604b2bdcb7dea11017ea404c14038.tar.xz
fixup: chroot-installation: install build-depends one by one to not fail on conflicts
Diffstat (limited to 'bin/chroot-installation.sh')
-rwxr-xr-xbin/chroot-installation.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh
index 3f6a6015..3803b1e1 100755
--- a/bin/chroot-installation.sh
+++ b/bin/chroot-installation.sh
@@ -78,8 +78,8 @@ prepare_install_build_depends() {
cat >> $CTMPFILE <<-EOF
$SCRIPT_HEADER
apt-get -y install build-essential
-for PACKAGE in $@ ; do
- apt-get -y build-dep $PACKAGE
+for PACKAGE in $@
+ do apt-get -y build-dep $PACKAGE
done
EOF
}