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:
Tim Ledbetter 2023-08-01 21:03:37 +01:00 committed by Tim Schumacher
parent 3e70c1b6a3
commit 539a33dc28
Notes: sideshowbarker 2024-07-17 20:58:35 +09:00

View File

@ -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}"
}