fix: just use setarch linux32 in uname wrapper

This commit is contained in:
Daniel Wolf 2024-03-28 18:21:52 -04:00
parent 26e6e07631
commit 081b586e5c
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
1 changed files with 2 additions and 2 deletions

View File

@ -10,9 +10,9 @@ else
fi
if [ $(dpkg --print-architecture) = "i386" ]; then
/usr/bin/setarch i386 "${UNAME}" $@
/usr/bin/setarch linux32 "${UNAME}" $@
elif [ $(dpkg --print-architecture) = "armhf" ]; then
/usr/bin/setarch arm "${UNAME}" $@
/usr/bin/setarch linux32 "${UNAME}" $@
else
"${UNAME}" $@
fi