diff options
author | Andreas Jaeger <aj@suse.de> | 2006-01-03 19:00:59 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2006-01-03 19:00:59 +0000 |
commit | 5e1f32525aff13aea730bde8954209b243605787 (patch) | |
tree | 80904a246a495888431f0828fc27226783ea4407 /scripts/check-local-headers.sh | |
parent | 35c2fd59ba2ed8f0cece3760155bb4f0aaba7bd0 (diff) | |
download | glibc-5e1f32525aff13aea730bde8954209b243605787.tar.gz glibc-5e1f32525aff13aea730bde8954209b243605787.tar.xz glibc-5e1f32525aff13aea730bde8954209b243605787.zip |
* scripts/check-local-headers.sh: Allow $includedir/c++.
2006-01-03 Andreas Jaeger <aj@suse.de> * scripts/check-local-headers.sh: Allow $includedir/c++.
Diffstat (limited to 'scripts/check-local-headers.sh')
-rwxr-xr-x | scripts/check-local-headers.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/check-local-headers.sh b/scripts/check-local-headers.sh index 88c85f7106..5896a933d2 100755 --- a/scripts/check-local-headers.sh +++ b/scripts/check-local-headers.sh @@ -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 |