mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Ports/glm: Create /usr/local/include
if it doesn't exist
Previously, the glm port would not build from a clean state, as this directory does not exist by default.
This commit is contained in:
parent
3e70c1b6a3
commit
539a33dc28
Notes:
sideshowbarker
2024-07-17 20:58:35 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/539a33dc28 Pull-request: https://github.com/SerenityOS/serenity/pull/20311 Reviewed-by: https://github.com/timschumi ✅
1 changed files with 3 additions and 1 deletions
|
@ -12,5 +12,7 @@ configure() {
|
|||
}
|
||||
|
||||
install() {
|
||||
run cp -R glm "${SERENITY_BUILD_DIR}/Root/usr/local/include/"
|
||||
target_dir="${SERENITY_INSTALL_ROOT}/usr/local/include/"
|
||||
run_nocd mkdir -p "${target_dir}"
|
||||
run cp -R glm "${target_dir}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue