From: Bruce Richardson Date: Fri, 4 Oct 2019 17:19:09 +0000 (+0100) Subject: drivers/baseband: align meson defines with make X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=a5fb66997f04d06f76c5b1603413b27c29711068;p=dpdk.git drivers/baseband: align meson defines with make 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 --- diff --git a/drivers/baseband/meson.build b/drivers/baseband/meson.build index 391bd511b8..03604400e6 100644 --- a/drivers/baseband/meson.build +++ b/drivers/baseband/meson.build @@ -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@'