Add conversion from ppc64le (rpm) to ppc64el (deb).

This commit is contained in:
Joey Hess
2014-02-26 13:09:32 -04:00
parent 887717f304
commit 2999238f34
2 changed files with 7 additions and 0 deletions

View File

@@ -614,6 +614,9 @@ sub arch {
elsif ($arch eq 'parisc') {
$arch='hppa';
}
elsif ($arch eq 'ppc64le') {
$arch='ppc64el';
}
$this->{arch}=$arch;
}
@@ -633,6 +636,9 @@ sub arch {
elsif ($arch eq 'all') {
$arch='noarch';
}
elsif ($arch eq 'ppc64el') {
$arch='ppc64le';
}
return $arch
}