mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-16 09:18:25 +02:00
ci/scan-build: Exclude the full path of the build dir
The tool runs in the build dir as cwd, but let' make this clearer
This commit is contained in:
parent
7c5d1b454d
commit
58a40bb4a3
1 changed files with 5 additions and 2 deletions
|
|
@ -1,4 +1,7 @@
|
|||
#!/bin/sh
|
||||
#!/bin/sh -x
|
||||
|
||||
# This wrapper just disables the malloc checker
|
||||
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc --exclude "_build/meson-private" "$@"
|
||||
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc \
|
||||
--exclude "$PWD/_build/meson-private" \
|
||||
--exclude "$PWD/meson-private" \
|
||||
"$@"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue