mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
pgo: pgo.sh: run ‘find’ in the build-directory, not cwd
This commit is contained in:
parent
e907ec209c
commit
6d67c2b4ab
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ export CFLAGS
|
|||
meson "${@}" "${blddir}" "${srcdir}" --buildtype=release -Db_lto=true
|
||||
|
||||
if [ ${do_pgo} = yes ]; then
|
||||
find . -name "*.gcda" -delete
|
||||
find "${blddir}" -name "*.gcda" -delete
|
||||
meson configure "${blddir}" -Db_pgo=generate
|
||||
ninja -C "${blddir}"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue