summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormyfreeweb <greg@unrelenting.technology>2020-10-16 13:22:21 +0000
committermyfreeweb <greg@unrelenting.technology>2020-10-16 13:22:21 +0000
commit5f48a2290785891e26ded55e108b5fd7921623c7 (patch)
treeaf035f7e1b6f232c9e2729e4e0380e1568422e53
parenta52a23cc834cb4e32a1725e0c5b153524c4b46fa (diff)
downloadgtk-doc-5f48a2290785891e26ded55e108b5fd7921623c7.tar.gz
meson: use lib/cmake instead of share/cmake
share/cmake has a particular structure (Help, Modules, Templates), while lib/cmake is for custom macros. Use lib/cmake like the autotools install did.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ba3e179..b784017 100644
--- a/meson.build
+++ b/meson.build
@@ -22,7 +22,7 @@ bindir = join_paths(prefix, get_option('bindir'))
libdir = join_paths(prefix, get_option('libdir'))
datadir = join_paths(prefix, get_option('datadir'))
-cmakedatadir = join_paths(datadir, 'cmake')
+cmakedatadir = join_paths(libdir, 'cmake')
autoconfdatadir = join_paths(datadir, 'aclocal')
pkgdir = join_paths(datadir, package_name)