dependencies/dub: Fix arguments passed as strings that should be bools

This commit is contained in:
Dylan Baker 2024-12-13 12:07:44 -08:00
parent 88d8a3a425
commit 7c625f80d8
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ class DubDependency(ExternalDependency):
for lib in bs['libs']:
if os.name != 'nt':
# trying to add system libraries by pkg-config
pkgdep = PkgConfigDependency(lib, environment, {'required': 'true', 'silent': 'true'})
pkgdep = PkgConfigDependency(lib, environment, {'required': True, 'silent': True})
if pkgdep.is_found:
for arg in pkgdep.get_compile_args():
self.compile_args.append(arg)