mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00:00
Build: Add FreeBSD support (#1492)
This commit is contained in:
parent
bceabd7c4b
commit
c64b5e73f5
5 changed files with 18 additions and 3 deletions
|
@ -105,7 +105,7 @@ printf "installing userland... "
|
|||
|
||||
if [ "$(uname -s)" = "Darwin" ]; then
|
||||
find ../Userland/ -type f -perm +111 -exec cp {} mnt/bin/ \;
|
||||
elif [ "$(uname -s)" = "OpenBSD" ]; then
|
||||
elif [ "$(uname -s)" = "OpenBSD" ] || [ "$(uname -s)" = "FreeBSD" ]; then
|
||||
find ../Userland/ -type f -perm -555 -exec cp {} mnt/bin/ \;
|
||||
else
|
||||
find ../Userland/ -type f -executable -exec cp {} mnt/bin/ \;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue