mk-sbuild-lv: use --arch=foo rather than --arch foo for debootstrap

This commit is contained in:
Emmet Hikory 2010-02-03 12:35:57 -08:00
parent c8f27f6cfe
commit dbfbeea256
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -6,6 +6,7 @@ ubuntu-dev-tools (0.92) UNRELEASED; urgency=low
[ Emmet Hikory ]
* mk-sbuild-lv: support foreign armel schroots
* mk-sbuild-lv: use --arch=foo rather than --arch foo for debootstrap
* debian/control: add qemu-arm-static to Recommends:
[ Michael Bienia ]

View File

@ -139,7 +139,7 @@ while :; do
;;
--arch)
# By default, use the native architecture.
arch_opt="--arch $2"
arch_opt="--arch=$2"
arch_suffix="-$2"
CHROOT_ARCH="$2"
if [ "$2" = "i386" ] || [ "$2" = "lpia" ] && [ -z "$personality" ];