git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ae096c
)
test/kni: fix dependency for BSD meson build
author
Bruce Richardson
<bruce.richardson@intel.com>
Thu, 1 Feb 2018 14:20:11 +0000
(14:20 +0000)
committer
Bruce Richardson
<bruce.richardson@intel.com>
Fri, 2 Feb 2018 10:52:37 +0000
(11:52 +0100)
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 <bruce.richardson@intel.com>
test/test/meson.build
patch
|
blob
|
history
diff --git
a/test/test/meson.build
b/test/test/meson.build
index
e8ddb76
..
eb3d87a
100644
(file)
--- 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