1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09: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
Notes: sideshowbarker 2024-07-18 08:41:38 +09:00

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