diff options
author | BlackEagle <ike.devolder@gmail.com> | 2014-05-25 12:10:01 +0200 |
---|---|---|
committer | Martijn Kaijser <mcm.kaijser@gmail.com> | 2014-06-07 08:43:37 +0200 |
commit | 70a161e9ce9f55c48dee0fc283cb28843d96fa18 (patch) | |
tree | 1c0134fba67077a3b459f8d1182ea9fc39a61d4e /Makefile.in | |
parent | 02a0b39b755fe22551faeb00676d7cb800dbb6e6 (diff) |
make sure applications/xbmc.desktop does'nt have executable flag
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index e07970fe34..864292257a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -643,7 +643,7 @@ endif endif @# Icons and links @install -d $(DESTDIR)$(datarootdir)/applications - @install tools/Linux/xbmc.desktop $(DESTDIR)$(datarootdir)/applications/xbmc.desktop + @install -m 0644 tools/Linux/xbmc.desktop $(DESTDIR)$(datarootdir)/applications/xbmc.desktop @install -d $(DESTDIR)$(datadir)/icons/hicolor/48x48/apps @install -m 0644 media/icon48x48.png $(DESTDIR)$(datadir)/icons/hicolor/48x48/apps/xbmc.png @install -d $(DESTDIR)$(datadir)/icons/hicolor/256x256/apps |