diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-06-06 20:38:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-06-06 20:39:29 +0200 |
commit | 3c6c943c7f549984698bc281784fa93cc0f485ae (patch) | |
tree | 20b9e8643bd001e030de15633f2d8bdd528a8d38 /Makefile | |
parent | 9b027e6c44e37ad37bd13223bb621d1d3f256d02 (diff) |
install feh icons with the correct permissions (644) (closes #301)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -77,9 +77,11 @@ install-icon: @echo installing icon to ${48_icon_dir} @mkdir -p ${48_icon_dir} @cp share/images/feh.png ${48_icon_dir} + @chmod 644 ${48_icon_dir}/feh.png @echo installing icon to ${scalable_icon_dir} @mkdir -p ${scalable_icon_dir} @cp share/images/feh.svg ${scalable_icon_dir} + @chmod 644 ${scalable_icon_dir}/feh.svg @if test "${app}" = 1 && which gtk-update-icon-cache > /dev/null 2>&1; then \ gtk-update-icon-cache ${icon_dir}; \ fi |