From 981e3a2b00f3ac7dd6f1c091956bcdff78105ecb Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 12 Jan 2013 01:18:06 +0100 Subject: chroot-installation: install build-depends one by one to not fail on conflicts --- bin/chroot-installation.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 4d1e8f30..3f6a6015 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -78,7 +78,9 @@ prepare_install_build_depends() { cat >> $CTMPFILE <<-EOF $SCRIPT_HEADER apt-get -y install build-essential -apt-get -y build-dep $@ +for PACKAGE in $@ ; do + apt-get -y build-dep $PACKAGE +done EOF } -- cgit v1.2.3-54-g00ecf