summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-10-09 10:54:58 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-10-09 10:56:28 +0100
commit8047179bfca65cad36c61daf5f88c97cc971848b (patch)
tree1a5855991afea16a7b2c55b6080cab3272251f53
parent7c1db82a2e9dc04fd652d6e6bb6f4eb976922368 (diff)
downloadcairo-8047179bfca65cad36c61daf5f88c97cc971848b.tar.gz
test: Teach check-preprocessor-syntax.sh about -inlines.h
-rwxr-xr-xsrc/check-preprocessor-syntax.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check-preprocessor-syntax.sh b/src/check-preprocessor-syntax.sh
index c4154151d..b718f604e 100755
--- a/src/check-preprocessor-syntax.sh
+++ b/src/check-preprocessor-syntax.sh
@@ -9,10 +9,10 @@ stat=0
HEADERS=$all_cairo_headers
-test "x$HEADERS" = x && HEADERS=`find . -name 'cairo*.h' ! -name 'cairo*-private.h' ! -name 'cairoint.h'`
+test "x$HEADERS" = x && HEADERS=`find . -name 'cairo*.h' ! -name 'cairo*-private.h' ! -name 'cairo*-inline.h' ! -name 'cairoint.h'`
PRIVATE=$all_cairo_private
-test "x$PRIVATE" = x && PRIVATE=`find . -name 'cairo*-private.h' -or -name 'cairoint.h'`
+test "x$PRIVATE" = x && PRIVATE=`find . -name 'cairo*-private.h' -or -name 'cairo*-inline.h' -or -name 'cairoint.h'`
SOURCES=$all_cairo_sources
test "x$SOURCES" = x && SOURCES=`find . -name 'cairo*.c' -or -name 'cairo*.cpp'`