Skip to content

Commit

Permalink
Load bsd.cfg by default in daca
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Feb 20, 2024
1 parent 49ce02f commit 9bd2454
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/donate_cpu_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
# changes)
CLIENT_VERSION = "1.3.54"
CLIENT_VERSION = "1.3.55"

# Timeout for analysis with Cppcheck in seconds
CPPCHECK_TIMEOUT = 30 * 60
Expand Down Expand Up @@ -733,7 +733,7 @@ def __iterate_files(self, path, has_include_cb):

def get_libraries(self, folder):
print('Detecting library usage...')
libraries = ['posix', 'gnu']
libraries = ['posix', 'gnu', 'bsd']

# explicitly copy as assignments in python are references
library_includes_re = copy.copy(self.__library_includes_re)
Expand Down

0 comments on commit 9bd2454

Please sign in to comment.