From 5f48a2290785891e26ded55e108b5fd7921623c7 Mon Sep 17 00:00:00 2001 From: myfreeweb Date: Fri, 16 Oct 2020 13:22:21 +0000 Subject: 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.1