mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Toolchain: Do not use install -D
in BuildIt.sh
`-D` doesn't exist on macOS. Just call `mkdir -p` instead.
This commit is contained in:
parent
491af34d36
commit
2949824849
Notes:
sideshowbarker
2024-07-17 09:37:30 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/2949824849 Pull-request: https://github.com/SerenityOS/serenity/pull/16925 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta
1 changed files with 2 additions and 1 deletions
|
@ -400,7 +400,8 @@ pushd "$DIR/Build/$ARCH"
|
|||
-e "s@$SRC_ROOT/AK/@AK/@" \
|
||||
-e "s@$SRC_ROOT/Userland/Libraries/LibC@@" \
|
||||
-e "s@$SRC_ROOT/Kernel/@Kernel/@")
|
||||
buildstep "system_headers" $INSTALL -D "$header" "Root/usr/include/$target"
|
||||
buildstep "system_headers" mkdir -p "$(dirname "Root/usr/include/$target")"
|
||||
buildstep "system_headers" $INSTALL "$header" "Root/usr/include/$target"
|
||||
done
|
||||
unset SRC_ROOT
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue