diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-07-19 15:57:46 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2024-08-13 09:57:26 +0200 |
commit | 81631a0dd1b76e6fe8e0ffcd9ee411676031b1bb (patch) | |
tree | edba6b2e059e3427bf20e93a65c1e42f76624738 | |
parent | 9fbbe86f7c6ab19356cfa7ca15b4b7c29b72e8cb (diff) | |
download | glibc-81631a0dd1b76e6fe8e0ffcd9ee411676031b1bb.tar.gz glibc-81631a0dd1b76e6fe8e0ffcd9ee411676031b1bb.tar.xz glibc-81631a0dd1b76e6fe8e0ffcd9ee411676031b1bb.zip |
Adjust check-local-headers test for libaudit 4.0
The new version introduces /usr/include/audit_logging.h and /usr/include/audit-records.h. (cherry picked from commit 91eb62d63887a959e43aafb6fc022a87614dc7c9)
-rwxr-xr-x | scripts/check-local-headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-local-headers.sh b/scripts/check-local-headers.sh index 5d3e61f889..ad23840333 100755 --- a/scripts/check-local-headers.sh +++ b/scripts/check-local-headers.sh @@ -33,7 +33,7 @@ exec ${AWK} -v includedir="$includedir" ' BEGIN { status = 0 exclude = "^" includedir \ - "/(.*-.*-.*/|.*-.*/|)(asm[-/]|arch|linux/|selinux/|mach/|mach_debug/|device/|hurd/(((hurd|ioctl)_types|paths)\\.h|ioctls\\.defs|ihash\\.h|version\\.h)|gd|nss3/|nspr4?/|c\\+\\+/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h)" + "/(.*-.*-.*/|.*-.*/|)(asm[-/]|arch|linux/|selinux/|mach/|mach_debug/|device/|hurd/(((hurd|ioctl)_types|paths)\\.h|ioctls\\.defs|ihash\\.h|version\\.h)|gd|nss3/|nspr4?/|c\\+\\+/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h|audit(_logging|-records)\\.h)" } /^[^ ]/ && $1 ~ /.*:/ { obj = $1 } { |