From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH] app/test-pipeline: fix missing dependency for FreeBSD build Date: Mon, 25 Mar 2019 15:38:09 +0000 Message-ID: <20190325153809.8955-1-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Bruce Richardson To: dev@dpdk.org Return-path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 4AD782B9A for ; Mon, 25 Mar 2019 16:38:16 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- 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