mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
meson.build: use join_paths() on prefix
So that "/" are correct on Windows and the paths in the .pc files are like C:/some/where and not C:\some\where.
This commit is contained in:
parent
db3ea93439
commit
c44edd95e7
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
pkgconf = configuration_data()
|
||||
|
||||
pkgconf.set('prefix', get_option('prefix'))
|
||||
pkgconf.set('prefix', join_paths(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')))
|
||||
|
|
Loading…
Reference in a new issue