mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +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
38994d4359
commit
3d20065bc5
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