Browse Source

Prevent clang from crashing

pull/331/head
James Sanderson 8 years ago
parent
commit
2f3d532cdb
  1. 2
      tools/cppfind

2
tools/cppfind

@ -2,6 +2,6 @@
FUSE_CFLAGS="$(pkg-config --cflags fuse) -DFUSE_USE_VERSION=29" FUSE_CFLAGS="$(pkg-config --cflags fuse) -DFUSE_USE_VERSION=29"
echo "#include <fuse.h>" | cpp ${FUSE_CFLAGS} | grep -q "${1}"
echo "#include <fuse.h>" | cpp ${FUSE_CFLAGS} | grep "${1}" 2>&1 > /dev/null
[ "$?" != "0" ]; echo $? [ "$?" != "0" ]; echo $?
Loading…
Cancel
Save