]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
meson: Fix theme path
authorRay Strode <rstrode@redhat.com>
Mon, 14 Nov 2022 19:19:58 +0000 (14:19 -0500)
committerRay Strode <rstrode@redhat.com>
Mon, 14 Nov 2022 19:19:58 +0000 (14:19 -0500)
The meson port is missing a few slashes that cause some theme loading
issues at runtime.

This fixes that.

meson.build

index 5932750f2a810c890aa7571cfc9c983435ece42a..114082bc27e98c8ae5414f1dbb2ba2445bc38ece 100644 (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')