app/pipeline: fix dependency for FreeBSD
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 25 Mar 2019 15:38:09 +0000 (15:38 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 27 Mar 2019 00:02:45 +0000 (01:02 +0100)
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

index 5578b41..d5eddab 100644 (file)
@@ -11,4 +11,4 @@ sources = files(
        'pipeline_lpm_ipv6.c',
        'pipeline_stub.c',
        'runtime.c')
-deps += 'pipeline'
+deps += ['pipeline', 'pci']