Improve checks
authorBehdad Esfahbod <behdad@behdad.org>
Sat, 9 Oct 2010 00:16:23 +0000 (20:16 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Sat, 9 Oct 2010 00:16:23 +0000 (20:16 -0400)
src/check-c-linkage-decls.sh
src/check-header-guards.sh

index c262516..711d089 100755 (executable)
@@ -8,7 +8,7 @@ stat=0
 
 cd "$srcdir"
 
-for x in *.c *.cc *.h *.hh ; do
+for x in hb-*.c hb-*.cc hb-*.h hb-*.hh ; do
        if ! grep -q HB_BEGIN_DECLS "$x" || ! grep -q HB_END_DECLS "$x"; then
                echo "Ouch, file $x does not HB_BEGIN_DECLS / HB_END_DECLS"
                stat=1
index 59c399a..c966cd2 100755 (executable)
@@ -8,7 +8,7 @@ stat=0
 
 cd "$srcdir"
 
-for x in *.h *.hh ; do
+for x in hb-*.h hb-*.hh ; do
        tag=`echo "$x" | tr 'a-z.-' 'A-Z_'`
        lines=`grep "\<$tag\>" "$x" | wc -l`
        if test "x$lines" != x3; then