icons: install svg files into the "scalable" directory

The USB SVG was mistakenly installed into a size specific dir, while the
main logo was not installed at all.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2021-01-14 14:56:40 +00:00
parent 3a57d746a6
commit f21cb3d233
6 changed files with 15 additions and 2 deletions

View File

@ -252,6 +252,7 @@ AC_CONFIG_FILES([
icons/32x32/Makefile
icons/48x48/Makefile
icons/256x256/Makefile
icons/scalable/Makefile
man/Makefile
mingw-virt-viewer.spec
po/Makefile

View File

@ -6,7 +6,7 @@ apps_icon_DATA = $(PACKAGE).png
EXTRA_DIST += $(apps_icon_DATA)
devices_icondir = $(datadir)/icons/hicolor/$(size)/devices/
devices_icon_DATA = virt-viewer-usb.png virt-viewer-usb.svg
devices_icon_DATA = $(PACKAGE)-usb.png
EXTRA_DIST += $(devices_icon_DATA)
-include $(top_srcdir)/git.mk

View File

@ -1,4 +1,4 @@
SUBDIRS = 16x16 22x22 24x24 32x32 48x48 256x256
SUBDIRS = 16x16 22x22 24x24 32x32 48x48 256x256 scalable
if OS_WIN32
noinst_DATA = virt-viewer.ico

View File

@ -0,0 +1,12 @@
EXTRA_DIST =
size = $(notdir $(PWD))
apps_icondir = $(datadir)/icons/hicolor/$(size)/apps/
apps_icon_DATA = $(PACKAGE).svg
EXTRA_DIST += $(apps_icon_DATA)
devices_icondir = $(datadir)/icons/hicolor/$(size)/devices/
devices_icon_DATA = $(PACKAGE)-usb.svg
EXTRA_DIST += $(devices_icon_DATA)
-include $(top_srcdir)/git.mk

View File

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB