From 1b14840b4859a752873f003394efa9ae95660110 Mon Sep 17 00:00:00 2001 From: Pierce Andjelkovic Date: Thu, 10 Mar 2022 02:00:06 +1100 Subject: [PATCH] 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. --- Ports/harfbuzz/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/harfbuzz/package.sh b/Ports/harfbuzz/package.sh index bc0c8451ad..d29caae7d6 100755 --- a/Ports/harfbuzz/package.sh +++ b/Ports/harfbuzz/package.sh @@ -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() {