mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
build: Install pkgconfig file to /usr/share/
Because the pkgconfig file is arch-independent, /usr/share/pkgconfig/ is a better location for it
This commit is contained in:
parent
3f37380c25
commit
e3a37893a8
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ project('blueprint-compiler',
|
|||
subdir('docs')
|
||||
|
||||
prefix = get_option('prefix')
|
||||
libdir = join_paths(prefix, get_option('libdir'))
|
||||
datadir = join_paths(prefix, get_option('datadir'))
|
||||
|
||||
py = import('python').find_installation('python3')
|
||||
|
||||
|
@ -14,7 +14,7 @@ configure_file(
|
|||
output: 'blueprint-compiler.pc',
|
||||
configuration: { 'VERSION': meson.project_version() },
|
||||
install: not meson.is_subproject(),
|
||||
install_dir: join_paths(libdir, 'pkgconfig'),
|
||||
install_dir: join_paths(datadir, 'pkgconfig'),
|
||||
)
|
||||
|
||||
install_data(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue