From 52164553cd4a397941cf94eb4a4d640544c6e7f1 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 15 Sep 2017 18:36:10 +0100 Subject: [PATCH] build: rename pkgconfig to libdpdk.pc In Debian and Ubuntu we have been shipping a pkgconfig file for DPDK for more than a year now, and the filename is libdpdk.pc. A few downstream projects, like OVS and Collectd, have adopted the use of libdpdk.pc in their build systems as well. In order to maintain backward compatibility, rename the file from DPDK.pc to libdpdk.pc. Signed-off-by: Luca Boccassi Acked-by: Bruce Richardson --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index c715beb276..5cb7705f73 100644 --- a/meson.build +++ b/meson.build @@ -83,6 +83,7 @@ endif pkg = import('pkgconfig') pkg.generate(name: meson.project_name(), + filebase: 'lib' + meson.project_name().to_lower(), version: meson.project_version(), libraries: dpdk_libraries, description: 'The Data Plane Development Kit (DPDK)', -- 2.20.1