summaryrefslogtreecommitdiff
path: root/libdocument
diff options
context:
space:
mode:
authorsj <[email protected]>2025-11-05 14:29:25 +0100
committersj <[email protected]>2025-11-05 14:29:25 +0100
commit2521fb43d84297f03a6e31125d3e9ce0d2b0b989 (patch)
tree2229bde6a93bde97efadd907b6d87a1122777b36 /libdocument
parent1fcc7d19a4847528b18b3d7a408136136b377043 (diff)
downloadatril-master.tar.bz2
atril-master.tar.xz
Fix meson pkg-config compatibility with configureHEADmaster
pkg-config input files set -latrilview etc. but the library outputs created were libview.so, so any project that used pkg-config was broken, not to mention that the file itself also got renamed from its previous value and pkg-config wouldn't find it anymore.
Diffstat (limited to 'libdocument')
-rw-r--r--libdocument/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdocument/meson.build b/libdocument/meson.build
index b19242e3..f93ccd3c 100644
--- a/libdocument/meson.build
+++ b/libdocument/meson.build
@@ -124,7 +124,7 @@ libdocument_deps = [
]
libdocument = library(
- 'document',
+ 'atrildocument',
libdocument_private_headers + libdocument_sources,
dependencies: libdocument_deps,
include_directories: include_root,