aboutsummaryrefslogtreecommitdiff
path: root/src/property/chroot.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/property/chroot.lisp')
-rw-r--r--src/property/chroot.lisp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/property/chroot.lisp b/src/property/chroot.lisp
index a61a9f5..e2b032f 100644
--- a/src/property/chroot.lisp
+++ b/src/property/chroot.lisp
@@ -36,7 +36,7 @@
(args (list "debootstrap"
(plist-to-long-options
(remove-from-plist options :apt.proxy :apt.mirrors))
- (strcat "--arch=" (os:debian-architecture os))
+ (strcat "--arch=" (os:debian-architecture-string os))
(os:debian-suite os)
root)))
options
@@ -72,9 +72,11 @@
;; %DEBOOTSTRAP-MANUALLY-INSTALLED for the case where the
;; architectures do not match because ensuring that debootstrap(8)
;; will be able to bootstrap a foreign arch is more involved.
- ,@(and (not (os:supports-arch-p
- (get-hostattrs-car :os) (os:linux-architecture
- (get-hostattrs-car :os host))))
+ ,@(and (compute-applicable-methods
+ #'os:supports-arch-p
+ (list (get-hostattrs-car :os) (get-hostattrs-car :os host)))
+ (not (os:supports-arch-p
+ (get-hostattrs-car :os) (get-hostattrs-car :os host)))
'((os:etypecase
(debianlike (apt:installed "qemu-user-static")))))))))