diff options
author | Holger Levsen <holger@layer-acht.org> | 2013-01-12 01:25:01 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2013-01-12 01:25:01 +0100 |
commit | 9c314c2785d604b2bdcb7dea11017ea404c14038 (patch) | |
tree | 7caac4081e4d5ac2cc577bd8e57756e8e22f3358 | |
parent | 981e3a2b00f3ac7dd6f1c091956bcdff78105ecb (diff) | |
download | jenkins.debian.net-9c314c2785d604b2bdcb7dea11017ea404c14038.tar.xz |
fixup: chroot-installation: install build-depends one by one to not fail on conflicts
-rwxr-xr-x | bin/chroot-installation.sh | 4 |
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 } |