From e7b824c124501351f1b263632bcf36cd8d0bb67a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wr=C3=B3bel?= <1662391+daniel-123@users.noreply.github.com> Date: Sat, 27 Jan 2024 09:32:37 +0100 Subject: [PATCH] Remove adding executable permissiosn to .desktop files .desktop files do not need executable permissions. Fixes #667 --- GNUmakefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 385e68b..90d9e39 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -63,10 +63,6 @@ client: cp syncplay/resources/syncplay.desktop $(APP_SHORTCUT_PATH)/ gzip docs/syncplay.1 --stdout > $(SHARE_PATH)/man/man1/syncplay.1.gz -ifeq ($(SINGLE_USER),false) - chmod 755 $(APP_SHORTCUT_PATH)/syncplay.desktop -endif - u-client: -rm $(BIN_PATH)/syncplay -rm $(LIB_PATH)/syncplay/syncplayClient.py @@ -84,10 +80,6 @@ server: cp syncplay/resources/syncplay-server.desktop $(APP_SHORTCUT_PATH)/ gzip docs/syncplay-server.1 --stdout > $(SHARE_PATH)/man/man1/syncplay-server.1.gz -ifeq ($(SINGLE_USER),false) - chmod 755 $(APP_SHORTCUT_PATH)/syncplay-server.desktop -endif - u-server: -rm $(BIN_PATH)/syncplay-server -rm $(LIB_PATH)/syncplay/syncplayServer.py