From 8e08385d2dd31912d1face09eb69772d7b7daaa5 Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sun, 5 Mar 2023 00:19:51 +0100 Subject: [PATCH] Fix include not found by cppcheck.sh Fixes: nofile:0:0: error: Can not open include file 'include/config.h' that is explicitly included. [preprocessorErrorDirective] --- cppcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppcheck.sh b/cppcheck.sh index 6021f6884..f023965f5 100755 --- a/cppcheck.sh +++ b/cppcheck.sh @@ -82,7 +82,7 @@ if test $# -eq 0 ; then cppcheck --inline-suppr \ -I src \ -I include \ - --include=include/config.h \ + --include=include/hamlib/config.h \ --include=include/hamlib/rig.h \ -q \ --force \