return whether the build uses libbsd or not
(builddir)
| 61 | |
| 62 | |
| 63 | def uses_libbsd(builddir): |
| 64 | "return whether the build uses libbsd or not" |
| 65 | return bool(get_build_config(builddir, lambda ln: 'RTE_USE_LIBBSD' in ln)) |
| 66 | |
| 67 | |
| 68 | def process(args): |
no test coverage detected