From: Bruce Richardson <bruce.richardson@intel.com>
To: dev@dpdk.org
Cc: Bruce Richardson <bruce.richardson@intel.com>
Subject: [dpdk-dev] [PATCH] app/test-pipeline: fix missing dependency for FreeBSD build
Date: Mon, 25 Mar 2019 15:38:09 +0000 [thread overview]
Message-ID: <20190325153809.8955-1-bruce.richardson@intel.com> (raw)
Message-ID: <20190325153809.Hvg3bJ52Gu69gOY-mI90dSr1DXnuEAC7RyZO1wAuRtI@z> (raw)
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
next reply other threads:[~2019-03-25 15:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-25 15:38 Bruce Richardson [this message]
2019-03-25 15:38 ` Bruce Richardson
2019-03-27 0:01 ` Thomas Monjalon
2019-03-27 0:01 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190325153809.8955-1-bruce.richardson@intel.com \
--to=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).