Blame SOURCES/0001-data-install-process-working.svg-to-filesystem.patch

f3cbb9
From 62377987c188fd48967c0956c36f36d8f77b0a24 Mon Sep 17 00:00:00 2001
f3cbb9
From: Ray Strode <rstrode@redhat.com>
f3cbb9
Date: Thu, 8 Jun 2017 12:04:31 -0400
f3cbb9
Subject: [PATCH] data: install process-working.svg to filesystem
f3cbb9
f3cbb9
This helps prevent unlock failure on inplace upgrades between
f3cbb9
7.3 and 7.4
f3cbb9
---
f3cbb9
 data/Makefile.am | 3 +++
f3cbb9
 1 file changed, 3 insertions(+)
f3cbb9
f3cbb9
diff --git a/data/Makefile.am b/data/Makefile.am
f3cbb9
index 2eee47903..e2b806d61 100644
f3cbb9
--- a/data/Makefile.am
f3cbb9
+++ b/data/Makefile.am
f3cbb9
@@ -45,60 +45,63 @@ introspection_DATA =				\
f3cbb9
 	$(NULL)
f3cbb9
 
f3cbb9
 theme_sources = 						\
f3cbb9
 	theme/gnome-shell-high-contrast.scss			\
f3cbb9
 	theme/gnome-shell.scss					\
f3cbb9
 	theme/gnome-shell-sass/_colors.scss			\
f3cbb9
 	theme/gnome-shell-sass/_common.scss			\
f3cbb9
 	theme/gnome-shell-sass/_drawing.scss			\
f3cbb9
 	theme/gnome-shell-sass/_high-contrast-colors.scss	\
f3cbb9
 	$(NULL)
f3cbb9
 
f3cbb9
 dist_theme_files =						\
f3cbb9
 	$(theme_sources)					\
f3cbb9
 	theme/Gemfile						\
f3cbb9
 	theme/HACKING						\
f3cbb9
 	theme/README						\
f3cbb9
 	theme/gnome-shell-sass/COPYING				\
f3cbb9
 	theme/gnome-shell-sass/HACKING				\
f3cbb9
 	theme/gnome-shell-sass/NEWS				\
f3cbb9
 	theme/gnome-shell-sass/README				\
f3cbb9
 	theme/gnome-shell-sass/gnome-shell-sass.doap		\
f3cbb9
 	theme/parse-sass.sh					\
f3cbb9
 	$(NULL)
f3cbb9
 
f3cbb9
 %.css: %.scss $(theme_sources)
f3cbb9
 	@if test -n "$(SASS)"; then \
f3cbb9
 		if $(AM_V_P); then PS4= set -x; else echo "  GEN      $@"; fi; \
f3cbb9
 		$(SASS) --sourcemap=none -f -q --update $<; \
f3cbb9
 	fi
f3cbb9
 
f3cbb9
+themedir = $(pkgdatadir)/theme
f3cbb9
+dist_theme_DATA = theme/process-working.svg
f3cbb9
+
f3cbb9
 resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/theme --generate-dependencies $(srcdir)/gnome-shell-theme.gresource.xml)
f3cbb9
 gnome-shell-theme.gresource: gnome-shell-theme.gresource.xml $(resource_files)
f3cbb9
 	$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/theme $<
f3cbb9
 resourcedir = $(pkgdatadir)
f3cbb9
 resource_DATA = gnome-shell-theme.gresource
f3cbb9
 
f3cbb9
 backgrounddir = $(pkgdatadir)
f3cbb9
 background_DATA = perf-background.xml
f3cbb9
 
f3cbb9
 perf-background.xml: perf-background.xml.in
f3cbb9
 	$(AM_V_GEN) sed -e "s|@datadir[@]|$(datadir)|" \
f3cbb9
 	    $< > $@ || rm $@
f3cbb9
 
f3cbb9
 keysdir = @GNOME_KEYBINDINGS_KEYSDIR@
f3cbb9
 keys_DATA = 50-gnome-shell-system.xml
f3cbb9
 
f3cbb9
 gsettings_SCHEMAS = org.gnome.shell.gschema.xml
f3cbb9
 
f3cbb9
 %.gschema.xml: %.gschema.xml.in Makefile
f3cbb9
 	$(AM_V_GEN) sed -e 's|@GETTEXT_PACKAGE[@]|$(GETTEXT_PACKAGE)|g' \
f3cbb9
 	$< > $@ || rm $@
f3cbb9
 
f3cbb9
 @GSETTINGS_RULES@
f3cbb9
 
f3cbb9
 # We need to compile schemas at make time
f3cbb9
 # to run from source tree
f3cbb9
 gschemas.compiled: $(gsettings_SCHEMAS:.xml=.valid)
f3cbb9
 	$(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --targetdir=. .
f3cbb9
 
f3cbb9
 all-local: gschemas.compiled
f3cbb9
-- 
f3cbb9
2.13.0
f3cbb9