From 8047179bfca65cad36c61daf5f88c97cc971848b Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 9 Oct 2014 10:54:58 +0100 Subject: [PATCH] test: Teach check-preprocessor-syntax.sh about -inlines.h --- src/check-preprocessor-syntax.sh | 4 ++-- 1 file 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'`