mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
sys-libs/gcompat: fix arm64 dynamic loader name logic
Due to arm* being above arm64 in the switch statement, arm64 would end up with ld-linux-armhf.so.3 instead of ld-linux-aarch64.so.1. Move the arm64 case above so the correct dynamic loader name is used. Signed-off-by: Violet Purcell <vimproved@inventati.org>
This commit is contained in:
@@ -26,8 +26,8 @@ get_loader_name() {
|
||||
case "$ABI" in
|
||||
x86) echo "ld-linux.so.2" ;;
|
||||
amd64) echo "ld-linux-x86-64.so.2" ;;
|
||||
arm*) echo "ld-linux-armhf.so.3" ;;
|
||||
arm64) echo "ld-linux-aarch64.so.1" ;;
|
||||
arm*) echo "ld-linux-armhf.so.3" ;;
|
||||
mips | powerpc | s390) echo "ld.so.1" ;;
|
||||
esac
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user