From: Michael Tremer Date: Tue, 18 May 2021 15:31:43 +0000 (+0000) Subject: builder: No longer check if the host supports an architecture X-Git-Tag: 0.9.28~1285^2~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ede485cc3396fbabb5bec5baacb968a28da4edff;p=pakfire.git builder: No longer check if the host supports an architecture Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/builder.py b/src/pakfire/builder.py index 630e13ae3..a73c7bce4 100644 --- a/src/pakfire/builder.py +++ b/src/pakfire/builder.py @@ -92,10 +92,6 @@ class Builder(object): # Architecture to build for self.arch = arch or _pakfire.native_arch() - # Check if this host can build the requested architecture. - if not _pakfire.arch_supported_by_host(self.arch): - raise BuildError(_("Cannot build for %s on this host") % self.arch) - def __enter__(self): self.log.debug("Entering %s" % self)