1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Marvin W <git@larma.de>
Date: Tue, 1 Apr 2025 23:29:27 +0200
Subject: Meson: Export correct package name
Previously, the .gir would announce a package libglycin-1, when it in fact
was glycin-1. The build even logged a related warning.
Forwarded: https://gitlab.gnome.org/GNOME/glycin/-/merge_requests/165
---
libglycin/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libglycin/meson.build b/libglycin/meson.build
index e1069a8..70c332d 100644
--- a/libglycin/meson.build
+++ b/libglycin/meson.build
@@ -156,7 +156,7 @@ foreach package : packages
# Listed as "C headers" in docs
header: f'glycin@suffix@.h',
# Listed as "pkg-config files" in docs
- export_packages: f'libglycin@suffix@-1',
+ export_packages: f'glycin@suffix@-1',
install: true,
)
if suffix == ''
|