38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 1dcae7bbba222a1c8bdfc2d76a9f716e638b0334 Mon Sep 17 00:00:00 2001
|
|
From: Ray Strode <rstrode@redhat.com>
|
|
Date: Thu, 8 Jun 2017 12:04:31 -0400
|
|
Subject: [PATCH] data: install process-working.svg to filesystem
|
|
|
|
This helps prevent unlock failure on inplace upgrades between
|
|
7.3 and 7.4
|
|
---
|
|
data/theme/meson.build | 2 ++
|
|
meson.build | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
diff --git a/data/theme/meson.build b/data/theme/meson.build
|
|
index 22bae3dd2..d5acb8d10 100644
|
|
--- a/data/theme/meson.build
|
|
+++ b/data/theme/meson.build
|
|
@@ -23,3 +23,5 @@ foreach style: styles
|
|
],
|
|
depend_files: theme_sources)
|
|
endforeach
|
|
+
|
|
+install_data('process-working.svg', install_dir: themedir)
|
|
diff --git a/meson.build b/meson.build
|
|
index 21a80bcc8..0acaba705 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -57,6 +57,7 @@ localedir = join_paths(datadir, 'locale')
|
|
portaldir = join_paths(datadir, 'xdg-desktop-portal', 'portals')
|
|
schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
|
|
servicedir = join_paths(datadir, 'dbus-1', 'services')
|
|
+themedir = join_paths(pkgdatadir, 'theme')
|
|
|
|
# XXX: Once https://github.com/systemd/systemd/issues/9595 is fixed and we can
|
|
# depend on this version, replace with something like:
|
|
--
|
|
2.21.0
|
|
|