From: Pino Toscano Date: Wed, 5 May 2021 06:06:22 +0000 (+0200) Subject: pics: stop installing app icon in pixmaps location X-Git-Tag: 0.14-rc2~7 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=9833654a203520941eb4053b6c0874453bcc7a74 pics: stop installing app icon in pixmaps location The /usr/share/pixmaps location is considered a legacy location for application icons; since the application icons are already installed in the global XDG hicolor theme, then simply stop installing the 48px one in the legacy pixmaps location. --- diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index 35eae344..e6b70a4c 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt @@ -64,10 +64,5 @@ if (WANT_MONO OR WANT_QTCLIENT) # Install Quassel-specific ones from Oxygen into hicolor as fallback install(DIRECTORY oxygen/ DESTINATION ${CMAKE_INSTALL_ICONDIR}/hicolor) endif() - - # For a system install, also copy to pixmaps - if (CMAKE_INSTALL_PREFIX STREQUAL "/usr") - install(FILES hicolor/48x48/apps/quassel.png DESTINATION /usr/share/pixmaps) - endif() endif() endif()