]> git.droids-corp.org - dpdk.git/commitdiff
drivers/baseband: align meson defines with make
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 4 Oct 2019 17:19:09 +0000 (18:19 +0100)
committerAkhil Goyal <akhil.goyal@nxp.com>
Wed, 9 Oct 2019 09:50:12 +0000 (11:50 +0200)
For baseband drivers, the macros used to indicate the presence of a
particular driver were subtly different from that used in make. The make
values hand "PMD" before the individual driver name, while in meson it came
afterwards. Update meson to put the "PMD" part first.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/baseband/meson.build

index 391bd511b88fdec64f3729e94c37df584e1dbdd9..03604400e6fe5cf8cb1f4c93f225ec7d0084c5ee 100644 (file)
@@ -3,5 +3,5 @@
 
 drivers = ['null', 'turbo_sw', 'fpga_lte_fec']
 
-config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
+config_flag_fmt = 'RTE_LIBRTE_PMD_@0@'
 driver_name_fmt = 'rte_pmd_@0@'