From 03830c6fd7e8c9de3587d162ddec4650d0018c97 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Thu, 16 Oct 2025 22:13:48 +0200 Subject: [PATCH] pkg-config should look for headers in include root Since meson installs the bstring headers directly into the include dir, the pkg-config file should also point to the root include dir rather than a bstring subdir This fixes a mismatch that existed since the meson build system was introduced for this library --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 860beca..c25d52e 100644 --- a/meson.build +++ b/meson.build @@ -56,7 +56,6 @@ pkg.generate( name: meson.project_name(), description: 'The Better String Library', version: meson.project_version(), - subdirs: ['bstring'], ) check = dependency('check', required: false)