Add Gentoo to Linux run script

This commit is contained in:
YoshiRulz 2023-04-02 07:50:05 +10:00
parent 2a70b532d5
commit 333fd6d533
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ libpath=""
if [ "$(command -v lsb_release)" ]; then
case "$(lsb_release -i | cut -c17- | tr -d "\n" | tr A-Z a-z)" in
"arch"|"artix"|"manjarolinux") libpath="/usr/lib";;
"fedora") libpath="/usr/lib64";;
"fedora"|"gentoo") libpath="/usr/lib64";;
"debian"|"linuxmint"|"pop"|"ubuntu") libpath="/usr/lib/x86_64-linux-gnu";;
esac
else