From 7390348a974ab78260f45351f2a1b984ec3a0be1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Apr 11 2016 16:30:38 +0000 Subject: noarch arch handling fixups on armhfp tasks armhfp is not a valid arch acording to autoconf. We were using arm instead. nodejs has a bunch of packages with ExclusiveArch and are hitting issues with using arm as the arch so switch to armv7hl instead Signed-off-by: Dennis Gilmore --- diff --git a/builder/kojid b/builder/kojid index c108755..e2dc040 100755 --- a/builder/kojid +++ b/builder/kojid @@ -202,7 +202,7 @@ class BuildRoot(object): self.br_arch = koji.canonArch(arch) # armhfp is not a valid arch according to autoconf if arch == 'armhfp': - self.target_arch = 'arm' + self.target_arch = 'armv7hl' else: self.target_arch = arch self.logger.debug("New buildroot: %(tag_name)s/%(br_arch)s/%(repoid)s" % vars(self))