qemu-user-static: add newline to binfmts

This commit is contained in:
Andrea Brancaleoni 2015-08-12 21:34:23 +02:00
parent 3f3124841b
commit f77b085d13
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'qemu-user-static'
pkgname=qemu-user-static
version=2.4.0
revision=1
revision=2
wrksrc="qemu-${version}"
hostmakedepends="pkg-config automake python"
makedepends="libglib-devel pixman-devel libuuid-devel"
@ -71,7 +71,8 @@ esac
for _fmt in $_fmts; do
eval "case $_fmt in $_omit) magic= ;; *) magic=\"\$_${_fmt}_magic\" mask=\"\$_${_fmt}_mask\" ;; esac"
if [ -n "$magic" ]; then
binfmts+="/usr/bin/qemu-$_fmt-static --magic $magic --mask $mask --offset 0 --credential yes "
binfmts+="/usr/bin/qemu-$_fmt-static --magic $magic --mask $mask --offset 0 --credential yes
"
fi
done