1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:17:43 +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:
Tim Ledbetter 2023-08-01 21:03:37 +01:00 committed by Tim Schumacher
parent 3e70c1b6a3
commit 539a33dc28

View file

@ -12,5 +12,7 @@ configure() {
} }
install() { 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}"
} }