dependencies/dub: Fix arguments passed as strings that should be bools
This commit is contained in:
parent
88d8a3a425
commit
7c625f80d8
|
@ -328,7 +328,7 @@ class DubDependency(ExternalDependency):
|
||||||
for lib in bs['libs']:
|
for lib in bs['libs']:
|
||||||
if os.name != 'nt':
|
if os.name != 'nt':
|
||||||
# trying to add system libraries by pkg-config
|
# 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:
|
if pkgdep.is_found:
|
||||||
for arg in pkgdep.get_compile_args():
|
for arg in pkgdep.get_compile_args():
|
||||||
self.compile_args.append(arg)
|
self.compile_args.append(arg)
|
||||||
|
|
Loading…
Reference in New Issue