mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-12 10:48:05 +00:00
58a40bb4a3
The tool runs in the build dir as cwd, but let' make this clearer
8 lines
222 B
Bash
Executable File
8 lines
222 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
# This wrapper just disables the malloc checker
|
|
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc \
|
|
--exclude "$PWD/_build/meson-private" \
|
|
--exclude "$PWD/meson-private" \
|
|
"$@"
|