blob: 92145d92b4314acf890623cca9479d5811bc4f67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- meson.build.orig 2024-08-13 14:23:04 UTC
+++ meson.build
@@ -98,7 +98,7 @@ install_datadir = get_option('datadir')
install_includedir = get_option('includedir')
install_libdir = get_option('libdir')
install_datadir = get_option('datadir')
-install_pkgconfigdir = install_libdir / 'pkgconfig'
+install_pkgconfigdir = join_paths('libdata', 'pkgconfig')
# Dependencies.
# xmlxx_build_dep: Dependencies when building the libxml++ library.
@@ -295,7 +295,7 @@ xmlxxconfig_h_meson = files('libxml++config.h.meson')
endif
xmlxxconfig_h_meson = files('libxml++config.h.meson')
-install_includeconfigdir = install_libdir / xmlxx_pcname / 'include'
+install_includeconfigdir = install_includedir / xmlxx_pcname / 'include'
configure_file(
input: xmlxxconfig_h_meson,
output: 'libxml++config.h',
|