[dpdk-dev,RFCv2,24/40] build: tweak naming of pmd dependencies

Message ID 20170814095208.166496-25-bruce.richardson@intel.com (mailing list archive)
State RFC, archived
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Bruce Richardson Aug. 14, 2017, 9:51 a.m. UTC
  Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/mempool/meson.build | 2 +-
 drivers/net/meson.build     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build
index 869e75cb7..1d003b757 100644
--- a/drivers/mempool/meson.build
+++ b/drivers/mempool/meson.build
@@ -91,7 +91,7 @@  foreach drv:mempool_drivers
 
 	# create a dependency object and add it to the global dictionary so
 	# testpmd or other built-in apps can find it if necessary
-	set_variable('dep_pmd_@0@'.format(drv),
+	set_variable('dep_rte_mempool_@0@'.format(drv),
 			declare_dependency(link_with: lib,
 			include_directories: includes))
 endforeach
diff --git a/drivers/net/meson.build b/drivers/net/meson.build
index 6b9177c05..07f3f7969 100644
--- a/drivers/net/meson.build
+++ b/drivers/net/meson.build
@@ -103,7 +103,7 @@  foreach drv:net_drivers
 
 	# create a dependency object and add it to the global dictionary so
 	# testpmd or other built-in apps can find it if necessary
-	set_variable('dep_pmd_@0@'.format(drv),
+	set_variable('dep_rte_pmd_@0@'.format(drv),
 			declare_dependency(link_with: lib,
 			include_directories: includes))
 endforeach