[gtk-doc: 1/2] meson: use lib/cmake instead of share/cmake




commit 5f48a2290785891e26ded55e108b5fd7921623c7
Author: myfreeweb <greg@unrelenting.technology>
Date:   Fri Oct 16 13:22:21 2020 +0000

    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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]