app/pipeline: fix dependency for FreeBSD

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: 474572d2ae ("app/pipeline: move from test directory")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Bruce Richardson 2019-03-25 15:38:09 +00:00 committed by Thomas Monjalon
parent da68794de0
commit b9a842674b

View file

@ -11,4 +11,4 @@ sources = files(
'pipeline_lpm_ipv6.c',
'pipeline_stub.c',
'runtime.c')
deps += 'pipeline'
deps += ['pipeline', 'pci']