Add patch which I forgot to svn add during previous commit

PR:		249419
Reported by:	vvd@unislabs.com
This commit is contained in:
Baptiste Daroussin 2020-09-18 20:25:33 +00:00
parent fbea77d941
commit 1ee32eea3b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=548902

View File

@ -0,0 +1,19 @@
--- meson.build.orig 2019-08-05 21:13:24 UTC
+++ meson.build
@@ -9,7 +9,7 @@ i18n = import('i18n')
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
pkgdatadir = join_paths(datadir, meson.project_name())
-pkgconfigdir = join_paths(datadir, 'pkgconfig')
+pkgconfigdir = join_paths(prefix, 'libdata/pkgconfig')
subdir('effects')
subdir('po')
@@ -23,6 +23,6 @@ conf.set('VERSION', meson.project_version())
pkg = configure_file(configuration: conf,
input: 'gnome-video-effects.pc.in',
install: true,
- install_dir: join_paths(datadir, 'pkgconfig'),
+ install_dir: pkgconfigdir,
output: 'gnome-video-effects.pc')