(pkgname)
| 317 | |
| 318 | |
| 319 | def _has_pkg_config(pkgname): |
| 320 | import subprocess |
| 321 | try: |
| 322 | return subprocess.call([_get_pkg_config_executable(), |
| 323 | '--exists', pkgname]) == 0 |
| 324 | except FileNotFoundError: |
| 325 | return False |
| 326 | |
| 327 | |
| 328 | def _read_pkg_config_variable(pkgname, cli_args): |
no test coverage detected