diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-10-03 06:36:28 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-10-03 06:36:28 +0000 |
commit | 1ef5accb516c39ee6ebd41ccfcb99406e84c376c (patch) | |
tree | 09ab2833cfa74befa28cfb655db8d5da3f0e7e15 | |
parent | 36692583866dac99672571d6d83ed2c65b9e795d (diff) | |
parent | 6fcd4248c16a4f6b0d21cece73b29cdbab6335bb (diff) | |
download | ayatana-indicator-messages-1ef5accb516c39ee6ebd41ccfcb99406e84c376c.tar.gz ayatana-indicator-messages-1ef5accb516c39ee6ebd41ccfcb99406e84c376c.tar.bz2 ayatana-indicator-messages-1ef5accb516c39ee6ebd41ccfcb99406e84c376c.zip |
Call gtk-update-icon-cache on $(datadir)/icons/hicolor
That's were icons are installed, not $(pkgdatadir).. Fixes: https://bugs.launchpad.net/bugs/1060618. Approved by jenkins, Charles Kerr.
-rw-r--r-- | data/icons/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am index 17dca13..44cd81b 100644 --- a/data/icons/Makefile.am +++ b/data/icons/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = scalable 16x16 22x22 24x24 32x32 48x48 -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(pkgdatadir)/icons/hicolor +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor install-data-hook: update-icon-cache uninstall-hook: update-icon-cache |