1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

use $\(\) instead of ``

This commit is contained in:
Falk Werner 2019-02-22 22:59:10 +01:00
parent 2c8c6d588a
commit 36560f71e7

View File

@ -2,7 +2,7 @@
#
# Helper to run clang-tidy to perform some additional checks.
FILES=`find lib -name '*.c'`
INCLUDES="-Iinclude -Ilib `pkg-config fuse3 --cflags` `pkg-config libwebsockets --cflags`"
FILES=$(find lib -name '*.c')
INCLUDES="-Iinclude -Ilib $(pkg-config fuse3 --cflags) $(pkg-config libwebsockets --cflags)"
clang-tidy -header-filter='.*' ${FILES} -- ${INCLUDES}