mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-04 05:58:12 +02:00
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:
parent
53bff28957
commit
78fad74cd0
1 changed files with 2 additions and 2 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue