diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-10-16 21:00:03 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-10-16 21:00:03 +0200 |
commit | 7c516eabb7c7b940de63417452e4d1eab3b83792 (patch) | |
tree | 9082b41a511bc7db42a98778e465320087777606 | |
parent | ddb9966eb6372d1ad46309437da6b07a43173a00 (diff) |
config.mk: Note that hardcoded ICON_PREFIX (if app==1) is intentional
(see #337)
-rw-r--r-- | config.mk | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ exif ?= 0 PREFIX ?= /usr/local ICON_PREFIX ?= ${DESTDIR}${PREFIX}/share/icons +# icons in /usr/share/local/icons (and other prefixes != /usr) are not +# generally supported. So ignore PREFIX and always install icons into +# /usr/share/icons if the user wants to install feh on their local machine. ifeq (${app},1) ICON_PREFIX = /usr/share/icons endif |