diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2012-10-02 23:40:52 -0300 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2012-10-02 23:40:52 -0300 |
commit | b6c5ec07288958920520d79505847457e42a1159 (patch) | |
tree | 7ce1e0bb52b3cd4e905f58216a1a483f0b3c07aa /scripts | |
parent | b2f80a478e23ced2135becbd8565a9795393c1c5 (diff) | |
download | glibc-b6c5ec07288958920520d79505847457e42a1159.tar.gz |
* scripts/check-local-headers.sh: Exclude sys/sdt.h and
sys/sdt-config.h.
Diffstat (limited to 'scripts')
-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 cacb842def..7fafcbf4d7 100755 --- a/scripts/check-local-headers.sh +++ b/scripts/check-local-headers.sh @@ -31,7 +31,7 @@ exec ${AWK} -v includedir="$includedir" ' BEGIN { status = 0 exclude = "^" includedir \ - "/(.*-.*-.*/|)(asm[-/]|linux/|selinux/|gd|nss3/|sys/capability\\.h|libaudit\\.h)" + "/(.*-.*-.*/|)(asm[-/]|linux/|selinux/|gd|nss3/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h)" } /^[^ ]/ && $1 ~ /.*:/ { obj = $1 } { |