1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

Build: Modify various parts to allow the build to succeed on FreeBSD

This commit is contained in:
Laurent Cimon 2020-10-17 16:25:13 -04:00 committed by Andreas Kling
parent a82c56f9f7
commit b4790010a8
5 changed files with 11 additions and 6 deletions

View file

@ -54,7 +54,7 @@ if [ "$(uname -s)" = "Darwin" ]; then
elif [ "$(uname -s)" = "OpenBSD" ]; then
mount -t ext2fs "/dev/${VND}i" mnt/ || die "could not mount filesystem"
elif [ "$(uname -s)" = "FreeBSD" ]; then
fuse-ext2 -o rw+ "/dev/${MD}" mnt/ || die "could not mount filesystem"
fuse-ext2 -o rw+,direct_io "/dev/${MD}" mnt/ || die "could not mount filesystem"
else
if ! mount _disk_image mnt/ ; then
if command -v genext2fs 1>/dev/null ; then

View file

@ -12,10 +12,11 @@ window_gid=13
CP="cp"
# cp on macOS does not support the -d option.
# cp on macOS and BSD systems do not support the -d option.
# gcp comes with coreutils, which is already a dependency.
if [ "$(uname -s)" = "Darwin" ]; then
CP=gcp
OS="$(uname -s)"
if [ "$OS" = "Darwin" ] || echo "$OS" | grep -qe 'BSD$'; then
CP="gcp"
fi
die() {