From 3a43867e1ccf25ca391de49c73f82ac9e5b67982 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Wed, 27 Jul 2022 15:23:36 -0500 Subject: [PATCH] Fix the permission of keyring files These are non-executables, they should be installed 644 rather than 755. Signed-off-by: Michel Alexandre Salim --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a99c40..cb2607f 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ clean: rm -rf build install: build - install -vDm 755 $(KEYRING_FILES) -t $(KEYRING_TARGET_DIR) + install -vDm 644 $(KEYRING_FILES) -t $(KEYRING_TARGET_DIR) install -vDm 755 $(SCRIPT_FILES) -t $(SCRIPT_TARGET_DIR) install -vDm 644 $(SYSTEMD_FILES) -t $(SYSTEMD_SYSTEM_UNIT_DIR) install -vdm 755 $(SYSTEMD_TIMER_DIR)