1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

Meta: Fix syslinux detection on Arch Linux

This commit is contained in:
Gunnar Beutner 2021-07-20 03:48:22 +02:00 committed by Andreas Kling
parent ac1455d3ba
commit 6a45ebe282

View file

@ -13,7 +13,7 @@ else
: "${SUDO_UID:=0}" "${SUDO_GID:=0}"
fi
for dir in "/usr/lib/syslinux" "/usr/share/syslinux"; do
for dir in "/usr/lib/syslinux/bios" "/usr/lib/syslinux" "/usr/share/syslinux"; do
if [ -d $dir ]; then
syslinux_dir=$dir
break