mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Meta: Fix syslinux detection on Arch Linux
This commit is contained in:
parent
ac1455d3ba
commit
6a45ebe282
Notes:
sideshowbarker
2024-07-18 08:41:38 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/6a45ebe282f Pull-request: https://github.com/SerenityOS/serenity/pull/8891 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/dascandy
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue