From: Ray Strode Date: Mon, 14 Nov 2022 19:19:58 +0000 (-0500) Subject: meson: Fix theme path X-Git-Tag: 23.51.283~67^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78fad74cd06709d196378f0e48e7e5b26da775a2;p=thirdparty%2Fplymouth.git meson: Fix theme path The meson port is missing a few slashes that cause some theme loading issues at runtime. This fixes that. --- diff --git a/meson.build b/meson.build index 5932750f..114082bc 100644 --- a/meson.build +++ b/meson.build @@ -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')