]> git.proxmox.com Git - mirror_zfs.git/blobdiff - Makefile.am
zfs(8) fixes
[mirror_zfs.git] / Makefile.am
index e009212f4552013347703195d2e1dce8760bf129..3adc161adc8a5edbd8a28edae4536e1331a7ec5e 100644 (file)
@@ -47,11 +47,14 @@ cstyle:
 
 shellcheck:
        @if type shellcheck > /dev/null 2>&1; then \
-               (find ${top_srcdir} -type f -name '*.sh.in' -o -type f \
-                -name '*.sh'; find etc/init.d/zfs*.in -type f) | \
+               shellcheck --exclude=SC1090 --format gcc scripts/paxcheck.sh \
+                       scripts/zloop.sh \
+                       scripts/zfs-tests.sh \
+                       scripts/zfs.sh; \
+               (find cmd/zed/zed.d/*.sh -type f) | \
                 grep -v 'zfs-script-config' | \
                 while read file; do \
-                       shellcheck --format gcc "$$file"; \
+                       shellcheck --exclude=SC1090 --format gcc "$$file"; \
                 done; \
         fi
 
@@ -59,7 +62,8 @@ lint: cppcheck paxcheck
 
 cppcheck:
        @if type cppcheck > /dev/null 2>&1; then \
-               cppcheck --quiet --force --error-exitcode=2 ${top_srcdir}; \
+               cppcheck --inline-suppr --quiet --force --error-exitcode=2 \
+               ${top_srcdir}; \
        fi
 
 paxcheck: