diff options
author | Arsen Arsenović <arsen@aarsen.me> | 2022-06-24 16:03:46 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-12 07:33:20 +0100 |
commit | 7b95b1831d71396150c5cb10d4edf899e135d068 (patch) | |
tree | be82740a6de850a430a2dbeca25aa21d6494787e /tests | |
parent | Convert build system to meson (diff) | |
download | pax-utils-7b95b1831d71396150c5cb10d4edf899e135d068.tar.gz pax-utils-7b95b1831d71396150c5cb10d4edf899e135d068.tar.bz2 pax-utils-7b95b1831d71396150c5cb10d4edf899e135d068.zip |
Probe the target system for needed headers
This prevents new or unconventional systems requiring upstream changes,
though, this is not perfect, as it doesn't address some of the other
defines related to OSes the preprocessor does (namely, wrt the ldso
cache handling). I didn't touch these yet as I took a more conservative
approach of (probably) not changing what happens at runtime.
Signed-off-by: Arsen Arsenović <arsen@aarsen.me>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/source/dotest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/source/dotest b/tests/source/dotest index c97e8cb..cc278a5 100755 --- a/tests/source/dotest +++ b/tests/source/dotest @@ -5,7 +5,7 @@ findfiles() { find "${top_srcdir}" \ '(' -type d -a '(' -name .git -o -name autotools ')' -prune ')' \ - -o '(' '(' -name '*.[ch]' -a ! -name 'config.h' ')' -print0 ')' + -o '(' '(' -name '*.[ch]' -a ! -name 'probes.h' ')' -print0 ')' } # |