diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-05-30 19:03:01 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-05-30 19:03:01 +0200 |
commit | 94d211c87955d79fe6a74d7385bff014cfc95192 (patch) | |
tree | 6ef7ccf65f17f92f1882091260699a275b9c3ebd /scripts/check-local-headers.sh | |
parent | 3e040a2d5f59c5494910bd6451b3dcb69221a047 (diff) | |
download | glibc-94d211c87955d79fe6a74d7385bff014cfc95192.tar.gz |
Add more hurd exception to local headers list
* scripts/check-local-headers.sh (exclude): Add hurd/ihash.h, and
include .*-.*/ in addition to .*-.*-.*/ (i.e. i386-gnu in addition to
i386-linux-gnu).
Diffstat (limited to 'scripts/check-local-headers.sh')
-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 0670da16bc..4cae4db572 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/|device/|hurd/(((hurd|ioctl)_types|paths)\\.h|ioctls\\.defs)|cthreads\\.h|gd|nss3/|c\\+\\+/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h)" + "/(.*-.*-.*/|.*-.*/|)(asm[-/]|arch|linux/|selinux/|mach/|device/|hurd/(((hurd|ioctl)_types|paths)\\.h|ioctls\\.defs|ihash\\.h)|cthreads\\.h|gd|nss3/|c\\+\\+/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h)" } /^[^ ]/ && $1 ~ /.*:/ { obj = $1 } { |