commit: e679f9bd82197f0f1831a0a4a282851994aa172c
Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
AuthorDate: Wed Jan 24 15:32:52 2024 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Jan 24 15:32:52 2024 +0000
URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=e679f9bd
build: use standard config.h naming
Signed-off-by: Mike Frysinger <vapier <AT> chromium.org>
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
meson.build | 2 +-
porting.h | 2 +-
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,
)
diff --git a/porting.h b/porting.h
index 61018fb..1ace55e 100644
--- a/porting.h
+++ b/porting.h
@@ -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 ')'
}
#