]> git.pld-linux.org Git - packages/weston.git/blob - weston-noarch-protocols.patch
- added noarch-protocols patch (drop arch-dependent libdir from protocols .pc file)
[packages/weston.git] / weston-noarch-protocols.patch
1 dataonly=true removes libdir _and prefix_ and prefix cannot be readded (as it's reserved variable),
2 so use absolute datarootdir
3 --- weston-9.0.0/libweston/meson.build.orig     2020-09-15 18:07:36.558978451 +0200
4 +++ weston-9.0.0/libweston/meson.build  2020-09-15 18:07:25.429038747 +0200
5 @@ -134,9 +134,10 @@
6         version: version_weston,
7         description: 'libWeston protocol files',
8         variables: [
9 -               'datarootdir=' + join_paths('${prefix}', get_option('datadir')),
10 +               'datarootdir=' + dir_data,
11                 'pkgdatadir=' + join_paths('${pc_sysrootdir}${datarootdir}', dir_protocol_libweston)
12         ],
13 +       dataonly: true,
14         install_dir: dir_data_pc
15  )
16  
This page took 0.022968 seconds and 3 git commands to generate.