[PATCH 5/6] test/test: fix dependency on KNI lib for BSD meson build
From: Bruce Richardson <hidden>
Date: 2018-01-31 17:43:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Bruce Richardson <hidden>
Date: 2018-01-31 17:43:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
The KNI library is not built on FreeBSD, so it needs to be an
optional rather than a mandatory dependency for building the autotest
binary.
Fixes: b5dc795a8a55 ("test: build app with meson as dpdk-test")
Signed-off-by: Bruce Richardson <redacted>
---
test/test/meson.build | 3 +++
1 file changed, 3 insertions(+)
diff --git a/test/test/meson.build b/test/test/meson.build
index e8ddb76e3..eb3d87a4d 100644
--- a/test/test/meson.build
+++ b/test/test/meson.build@@ -230,6 +230,9 @@ endif if dpdk_conf.has('RTE_LIBRTE_POWER') test_deps += 'power' endif +if dpdk_conf.has('RTE_LIBRTE_KNI') + test_deps += 'kni' +endif test_dep_objs = [] foreach d:test_deps
--
2.14.1