]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* scripts/check-local-headers.sh: Allow $includedir/c++.
authorAndreas Jaeger <aj@suse.de>
Tue, 3 Jan 2006 19:00:59 +0000 (19:00 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 3 Jan 2006 19:00:59 +0000 (19:00 +0000)
2006-01-03  Andreas Jaeger  <aj@suse.de>

* scripts/check-local-headers.sh: Allow $includedir/c++.

ChangeLog
scripts/check-local-headers.sh

index b8079b777350800108560d68579294040b750976..4a038c78e81b691a4e9389def11eb12a6b8423d2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-03  Andreas Jaeger  <aj@suse.de>
+
+       * scripts/check-local-headers.sh: Allow $includedir/c++.
+
 2006-01-03  Jakub Jelinek  <jakub@redhat.com>
 
        * posix/unistd.h (ctermid): Remove __nonnull attribute.
index 88c85f7106993b973aa9b86ee7c15578c870a5f4..5896a933d29d259c2aabb9ef8e98df7fe4eada56 100755 (executable)
@@ -30,7 +30,8 @@ if fgrep "$includedir" */*.d |
 fgrep -v "$includedir/asm" |
 fgrep -v "$includedir/linux" |
 fgrep -v "$includedir/selinux" |
-fgrep -v "$includedir/gd"; then
+fgrep -v "$includedir/gd" |
+fgrep -v "$includedir/c++"; then
   # If we found a match something is wrong.
   exit 1
 fi