From 2f3d532cdb4d86c54fba1cea566ef89f11909519 Mon Sep 17 00:00:00 2001 From: James Sanderson Date: Sun, 30 Oct 2016 14:21:02 +0000 Subject: [PATCH] Prevent clang from crashing --- tools/cppfind | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cppfind b/tools/cppfind index c833ce9d..a1e14b9a 100755 --- a/tools/cppfind +++ b/tools/cppfind @@ -2,6 +2,6 @@ FUSE_CFLAGS="$(pkg-config --cflags fuse) -DFUSE_USE_VERSION=29" -echo "#include " | cpp ${FUSE_CFLAGS} | grep -q "${1}" +echo "#include " | cpp ${FUSE_CFLAGS} | grep "${1}" 2>&1 > /dev/null [ "$?" != "0" ]; echo $?