Ports: Allow harfbuzz to be built with cmake 3.18.4

CMake defaults to the current directory if the source or build 
directory is not specified. Harfbuzz builds into an alternate 
directory so it fails. This change specifies the directory prior 
to any additional parameters so the build can succeed with 
cmake 3.18.4.
This commit is contained in:
Pierce Andjelkovic 2022-03-10 02:00:06 +11:00 committed by Linus Groh
parent c24ba8c5ad
commit 1b14840b48
Notes: sideshowbarker 2024-07-17 17:22:57 +09:00

View file

@ -9,7 +9,7 @@ auth_type=sha256
configure() {
run mkdir -p build
run sh -c "cd build && cmake ${configopts[@]} .."
run sh -c "cd build && cmake .. ${configopts[@]}"
}
build() {