]> git.droids-corp.org - dpdk.git/commitdiff
regex/octeontx2: fix driver name
authorThomas Monjalon <thomas@monjalon.net>
Fri, 23 Oct 2020 17:41:30 +0000 (19:41 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 3 Nov 2020 10:47:44 +0000 (11:47 +0100)
Following the recent alignment of all driver names,
this new driver get unaligned:
librte_regex_octeontx2_regex.so

The 'fmt_name' must be "octeontx2_regex", and if not provided,
is taken from the 'name' variable.
But the variable 'name' should not be overwritten,
to keep the automatic value from the directory name.

The library name will be composed of the class directory
and the driver directory name:
librte_regex_octeontx2.so

Reported-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
drivers/regex/octeontx2/meson.build

index 398a981c0711d29b7e513a5754090d3b3471e606..aada0b560168c6d173feeec1b81da697f9551272 100644 (file)
@@ -38,7 +38,7 @@ foreach flag: extra_flags
        endif
 endforeach
 
-name = 'octeontx2_regex'
+fmt_name = 'octeontx2_regex'
 deps += ['bus_pci', 'common_octeontx2', 'regexdev']
 
 includes += include_directories('../../common/octeontx2')