diff options
-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 } |