From: Manuel Nickschas Date: Fri, 12 Feb 2010 00:13:22 +0000 (+0100) Subject: Install hicolor icons to the global icon dir rather than the data dir X-Git-Tag: 0.6-beta1~43 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=bb472af43db9b3a3bb02af1d853ae808890a49bb;ds=sidebyside Install hicolor icons to the global icon dir rather than the data dir In order for StatusNotifierWatcher to find quassel's tray status icons, they must be in the global icon dir rather than the app data dir (i.e., we need them in /usr/share/icons rather than /usr/share/apps/quassel). --- diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index 1ce26c91..0fda03ea 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt @@ -31,7 +31,7 @@ if(WANT_MONO OR WANT_QTCLIENT) endif(INSTALL_OXY) set(CLIENT_RCS ${CLIENT_RCS} ${ICON_RCS} PARENT_SCOPE) else(EMBED_DATA) - install(DIRECTORY hicolor DESTINATION ${DATA_INSTALL_DIR}/quassel/icons) + install(DIRECTORY hicolor DESTINATION ${ICON_INSTALL_DIR}) install(DIRECTORY oxygen DESTINATION ${DATA_INSTALL_DIR}/quassel/icons) if(INSTALL_OXY) install(DIRECTORY oxygen_kde/ DESTINATION ${DATA_INSTALL_DIR}/quassel/icons/oxygen)