From c8beecb61fd45d99fc9ce6292300aab60dab5db4 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 16 Feb 2021 13:23:05 -0500 Subject: [PATCH] express: Change pkgconfig file to be libexpress This pkgconfig file is just for the library of express...as such, let's name it libexpress --- express.pc.in => libexpress.pc.in | 0 meson.build | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename express.pc.in => libexpress.pc.in (100%) diff --git a/express.pc.in b/libexpress.pc.in similarity index 100% rename from express.pc.in rename to libexpress.pc.in diff --git a/meson.build b/meson.build index 6293773..346e46b 100644 --- a/meson.build +++ b/meson.build @@ -141,8 +141,8 @@ pkgconf.set('requirements_libexpress_libs', requirement_express_libs) pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir')) configure_file( - input : join_paths(meson.source_root(), 'express.pc.in'), - output : 'express.pc', + input : join_paths(meson.source_root(), 'libexpress.pc.in'), + output : 'libexpress.pc', configuration : pkgconf, install_dir : pkg_install_dir )