Skip to content

Commit

Permalink
Change rpm dist packaging type for arm64 to aarch64 (influxdata#7645)
Browse files Browse the repository at this point in the history
  • Loading branch information
sboeckelmann authored and idohalevi committed Sep 23, 2020
1 parent 6d8ea0e commit c5dc900
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c5dc900

Please sign in to comment.