From 1d1afe6481d4e3dee83891bc8eedbd401d1a0110 Mon Sep 17 00:00:00 2001 From: Pierre Fersing Date: Mon, 5 Dec 2016 17:45:02 +0100 Subject: [PATCH] Fix RPM architecture for armhf (#2003) Signed-off-by: Pierre Fersing --- scripts/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build.py b/scripts/build.py index 77befd599..0221cf3c4 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -583,6 +583,8 @@ def package(build_output, pkg_name, version, nightly=False, iteration=1, static= if "static_" in arch: # Remove the "static_" from the displayed arch on the package package_arch = arch.replace("static_", "") + elif package_type == "rpm" and arch == 'armhf': + package_arch = 'armv6hl' else: package_arch = arch if not release and not nightly: