summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2021-04-12 16:04:25 +0200
committerSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2021-04-12 16:04:25 +0200
commit43a64330be8cd857b9f77e7190b4669296a40152 (patch)
tree02f86cf9e3b47a015b562953be19a294864aca9a
parentbad2d2b50d71925b3fd351f406a0c445d03ed9b2 (diff)
downloadexo-43a64330be8cd857b9f77e7190b4669296a40152.tar.gz
Drop preferences-desktop-default-applications icon
This icon is superseded by org.xfce.settings.default-applications which is now provided by xfce4-settings (along with the actual preferred applications dialog).
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac.in3
-rw-r--r--icons/24x24/Makefile.am9
-rw-r--r--icons/24x24/preferences-desktop-default-applications.pngbin1377 -> 0 bytes
-rw-r--r--icons/48x48/Makefile.am9
-rw-r--r--icons/48x48/preferences-desktop-default-applications.pngbin3013 -> 0 bytes
-rw-r--r--icons/Makefile.am19
7 files changed, 0 insertions, 41 deletions
diff --git a/Makefile.am b/Makefile.am
index 596b90a..513ac36 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,7 +5,6 @@ SUBDIRS = \
exo-desktop-item-edit \
exo-open \
docs \
- icons \
pixmaps \
po \
tests
diff --git a/configure.ac.in b/configure.ac.in
index 9d13e10..e1c2f2a 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -235,9 +235,6 @@ exo/exo-2.pc
exo/exo-config.h
exo-desktop-item-edit/Makefile
exo-open/Makefile
-icons/Makefile
-icons/24x24/Makefile
-icons/48x48/Makefile
pixmaps/Makefile
po/Makefile.in
tests/Makefile
diff --git a/icons/24x24/Makefile.am b/icons/24x24/Makefile.am
deleted file mode 100644
index 5e6366a..0000000
--- a/icons/24x24/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-
-iconsdir = $(datadir)/icons/hicolor/24x24/apps
-icons_DATA = \
- preferences-desktop-default-applications.png
-
-EXTRA_DIST = \
- $(icons_DATA)
-
-# vi:set ts=8 sw=8 noet ai nocindent:
diff --git a/icons/24x24/preferences-desktop-default-applications.png b/icons/24x24/preferences-desktop-default-applications.png
deleted file mode 100644
index 0a1bac2..0000000
--- a/icons/24x24/preferences-desktop-default-applications.png
+++ /dev/null
Binary files differ
diff --git a/icons/48x48/Makefile.am b/icons/48x48/Makefile.am
deleted file mode 100644
index 40491b9..0000000
--- a/icons/48x48/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-
-appicondir = $(datadir)/icons/hicolor/48x48/apps
-appicon_DATA = \
- preferences-desktop-default-applications.png
-
-EXTRA_DIST = \
- $(appicon_DATA)
-
-# vi:set ts=8 sw=8 noet ai nocindent:
diff --git a/icons/48x48/preferences-desktop-default-applications.png b/icons/48x48/preferences-desktop-default-applications.png
deleted file mode 100644
index 6694e03..0000000
--- a/icons/48x48/preferences-desktop-default-applications.png
+++ /dev/null
Binary files differ
diff --git a/icons/Makefile.am b/icons/Makefile.am
deleted file mode 100644
index f499a59..0000000
--- a/icons/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-
-SUBDIRS = \
- 24x24 \
- 48x48
-
-gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
-
-install-data-hook:
- @-if test -z "$(DESTDIR)"; then \
- echo "Updating Gtk icon cache."; \
- $(gtk_update_icon_cache); \
- else \
- echo "*** Icon cache not updated. Remember to run:"; \
- echo "***"; \
- echo "*** $(gtk_update_icon_cache)"; \
- echo "***"; \
- fi
-
-# vi:set ts=8 sw=8 noet ai nocindent: