mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:17:35 +00:00
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:
parent
c24ba8c5ad
commit
1b14840b48
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue