0672de5b89
Fixes #98769. Important changes from https://gstreamer.freedesktop.org/releases/1.18/: * `gst-validate` was renamed to `gst-devtools` upstream: > * the `gst-validate` tarball has been superseded by > the `gst-devtools` tarball for consistency with the git module name. * `gst-python` is now Python 3 only: > * Python 2.x is no longer supported
16 lines
711 B
Diff
16 lines
711 B
Diff
diff --git a/validate/pkgconfig/meson.build b/validate/pkgconfig/meson.build
|
|
index a612b21b..c017eaff 100644
|
|
--- a/validate/pkgconfig/meson.build
|
|
+++ b/validate/pkgconfig/meson.build
|
|
@@ -2,8 +2,8 @@ pkgconf = configuration_data()
|
|
|
|
pkgconf.set('prefix', get_option('prefix'))
|
|
pkgconf.set('exec_prefix', '${prefix}')
|
|
-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
|
|
-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
|
|
+pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
|
|
+pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
|
|
pkgconf.set('GST_API_VERSION', apiversion)
|
|
pkgconf.set('VERSION', gst_version)
|
|
|