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

2006-01-03  Andreas Jaeger  <aj@suse.de>

	* scripts/check-local-headers.sh: Allow $includedir/c++.
This commit is contained in:
Andreas Jaeger 2006-01-03 19:00:59 +00:00
parent 35c2fd59ba
commit 5e1f32525a
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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