* [PATCH] app/test-pipeline: fix missing dependency for FreeBSD build
@ 2019-03-25 15:38 Bruce Richardson
2019-03-27 0:01 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Bruce Richardson @ 2019-03-25 15:38 UTC (permalink / raw)
To: dev; +Cc: Bruce Richardson
When building on FreeBSD, the compiler emitted an error due to being
unable to find rte_pci.h. This was due to missing dependencies for the
application.
Fixes: 474572d2ae5a ("app/pipeline: move from test directory")
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
app/test-pipeline/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/test-pipeline/meson.build b/app/test-pipeline/meson.build
index 5578b414d..d5eddaba9 100644
--- a/app/test-pipeline/meson.build
+++ b/app/test-pipeline/meson.build
@@ -11,4 +11,4 @@ sources = files(
'pipeline_lpm_ipv6.c',
'pipeline_stub.c',
'runtime.c')
-deps += 'pipeline'
+deps += ['pipeline', 'pci']
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-03-27 0:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-25 15:38 [PATCH] app/test-pipeline: fix missing dependency for FreeBSD build Bruce Richardson
2019-03-27 0:01 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).