1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Reiner Herrmann <reiner@reiner-h.de>
Date: Sat, 21 Dec 2019 22:31:04 +0100
Subject: remove operating system check during .desktop installation
Forwarded: not-needed
the files can also be installed on hurd and kfreebsd
---
desktop/Makefile | 2 --
1 file changed, 2 deletions(-)
--- a/desktop/Makefile
+++ b/desktop/Makefile
@@ -27,7 +27,6 @@
#
install:
- if test `uname` = Linux; then \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/applications; \
$(INSTALL_DATA) htmldoc.desktop $(BUILDROOT)$(datadir)/applications; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/mime/packages; \
@@ -38,7 +37,6 @@
$(INSTALL_DATA) htmldoc-128.png $(BUILDROOT)$(datadir)/icons/hicolor/128x128/apps/htmldoc.png; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/icons/hicolor/256x256/apps; \
$(INSTALL_DATA) htmldoc-256.png $(BUILDROOT)$(datadir)/icons/hicolor/256x256/apps/htmldoc.png; \
- fi
#
|