app/test-pipeline: fix missing dependency for FreeBSD build

Message ID 20190325153809.8955-1-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series app/test-pipeline: fix missing dependency for FreeBSD build |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing success Performance Testing PASS

Commit Message

Bruce Richardson March 25, 2019, 3:38 p.m. UTC
  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(-)
  

Comments

Thomas Monjalon March 27, 2019, 12:01 a.m. UTC | #1
25/03/2019 16:38, 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>

Applied, thanks
  

Patch

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']