From 6f5a303f3b6d1d25c959c3c2a318f4d9397eb64a Mon Sep 17 00:00:00 2001 From: Krzysztof Opasiak Date: Tue, 10 Dec 2013 13:31:54 +0100 Subject: [PATCH] Treat armv7l as an alias to armel architecture. There are some OS like Tizne which use rpm's and build them for armv7l architecture. In debain nomenclature this architecture is armel, so armv7l should be an alias to armel. Signed-off-by: Krzysztof Opasiak --- Alien/Package/Rpm.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Alien/Package/Rpm.pm b/Alien/Package/Rpm.pm index 2c02e6f..d970c07 100644 --- a/Alien/Package/Rpm.pm +++ b/Alien/Package/Rpm.pm @@ -607,6 +607,10 @@ sub arch { # Treat armv4l as arm. $arch='arm'; } + elsif ($arch eq 'armv7l') { + # Treat armv7l as armel. + $arch='armel'; + } elsif ($arch eq 'parisc') { $arch='hppa'; }