diff options
author | Mike Frysinger <vapier@chromium.org> | 2024-01-24 10:32:52 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-24 10:32:52 -0500 |
commit | e679f9bd82197f0f1831a0a4a282851994aa172c (patch) | |
tree | 4d124a2046ee5cd912f5b353011c5c9012cb0c6d | |
parent | github: add codespell checker (diff) | |
download | pax-utils-e679f9bd82197f0f1831a0a4a282851994aa172c.tar.gz pax-utils-e679f9bd82197f0f1831a0a4a282851994aa172c.tar.bz2 pax-utils-e679f9bd82197f0f1831a0a4a282851994aa172c.zip |
build: use standard config.h naming
Signed-off-by: Mike Frysinger <vapier@chromium.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | porting.h | 2 | ||||
-rwxr-xr-x | tests/source/dotest | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 255107b..c91bb64 100644 --- a/meson.build +++ b/meson.build @@ -56,7 +56,7 @@ foreach x : [ endforeach configure_file( - output : 'probes.h', + output : 'config.h', configuration : probe_results, ) @@ -11,7 +11,7 @@ #ifndef _PORTING_H #define _PORTING_H -#include "probes.h" +#include "config.h" #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(*arr)) diff --git a/tests/source/dotest b/tests/source/dotest index cc278a5..c97e8cb 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 'probes.h' ')' -print0 ')' + -o '(' '(' -name '*.[ch]' -a ! -name 'config.h' ')' -print0 ')' } # |