meson: Fix theme path

The meson port is missing a few slashes that cause some theme loading
issues at runtime.

This fixes that.
This commit is contained in:
Ray Strode 2022-11-14 14:19:58 -05:00
parent 53bff28957
commit 78fad74cd0

View file

@ -19,14 +19,14 @@ pkgconfig = import('pkgconfig')
# General variables
plymouth_soversion = '5.0.0'
plymouth_theme_path = get_option('prefix') / get_option('datadir') / 'plymouth' / 'themes'
plymouth_theme_path = get_option('prefix') / get_option('datadir') / 'plymouth' / 'themes/'
plymouth_plugin_path = get_option('prefix') / get_option('libdir') / 'plymouth/'
plymouth_policy_dir = get_option('prefix') / get_option('datadir') / 'plymouth/'
plymouth_conf_dir = get_option('prefix') / get_option('sysconfdir') / 'plymouth/'
plymouth_time_dir = get_option('prefix') / get_option('localstatedir') / 'lib' / 'plymouth'
plymouth_runtime_dir = get_option('runstatedir') / 'plymouth'
plymouth_runtime_theme_path = plymouth_runtime_dir / 'themes'
plymouth_runtime_theme_path = plymouth_runtime_dir / 'themes/'
# Dependencies
cc = meson.get_compiler('c')