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 <k.opasiak@samsung.com>
This commit is contained in:
Krzysztof Opasiak
2013-12-10 13:31:54 +01:00
committed by Joey Hess
parent 92933477e6
commit 6f5a303f3b

View File

@@ -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';
}