Map arm64 in deb to aarch64 in rpm

This fixes conversion of arm64 debian packages.

See #985808, which was the bug for doing it in the opposite direction.
This commit is contained in:
Alois Klink
2023-08-05 15:11:25 +01:00
committed by Bastian Germann
parent b65f2d6974
commit 385b2066d3
2 changed files with 5 additions and 0 deletions

View File

@@ -773,6 +773,9 @@ sub arch {
elsif ($arch eq 'all') {
$arch='noarch';
}
elsif ($arch eq 'arm64') {
$arch='aarch64';
}
elsif ($arch eq 'ppc64el') {
$arch='ppc64le';
}