about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2012-10-02 23:40:52 -0300
committerAlexandre Oliva <aoliva@redhat.com>2012-10-02 23:40:52 -0300
commitb6c5ec07288958920520d79505847457e42a1159 (patch)
tree7ce1e0bb52b3cd4e905f58216a1a483f0b3c07aa
parentb2f80a478e23ced2135becbd8565a9795393c1c5 (diff)
downloadglibc-b6c5ec07288958920520d79505847457e42a1159.tar.gz
glibc-b6c5ec07288958920520d79505847457e42a1159.tar.xz
glibc-b6c5ec07288958920520d79505847457e42a1159.zip
* scripts/check-local-headers.sh: Exclude sys/sdt.h and
sys/sdt-config.h.
-rw-r--r--ChangeLog5
-rwxr-xr-xscripts/check-local-headers.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 77b6827227..84eac6f869 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-02  Alexandre Oliva <aoliva@redhat.com>
+
+	* scripts/check-local-headers.sh: Exclude sys/sdt.h and
+	sys/sdt-config.h.
+
 2012-10-02  Roland McGrath  <roland@hack.frob.com>
 
 	* elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
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 }
 {