Change rpm dist packaging type for arm64 to aarch64 (#7645)

This commit is contained in:
sboeckelmann 2020-06-08 23:49:12 +02:00 committed by GitHub
parent 723f1d33e6
commit 23bcc8a3a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -616,6 +616,9 @@ def package(build_output, pkg_name, version, nightly=False, iteration=1, static=
package_arch = arch.replace("static_", "")
elif package_type == "rpm" and arch == 'armhf':
package_arch = 'armv6hl'
elif package_type == "rpm" and arch == 'arm64':
# Adjust arm64 rpm package arch
package_arch = 'aarch64'
else:
package_arch = arch
if not version: