<Makefile/systemd_services: Change default perm of installed files>

Its better to remove the default executable bit put by install when no
-m is provided and leave the systemd service files only readable.
This commit is contained in:
Quentin Bourgeois
2018-09-29 10:04:05 +00:00
parent 5f32e504c2
commit aeb6f87278

View File

@@ -44,4 +44,4 @@ install-exclude:
# target: install-systemd - Install systemd timer and service files
install-systemd:
install -d $(DEST_SYSTEMD)
install $(SRCS_SYSTEMD) $(DEST_SYSTEMD)
install -m 0644 $(SRCS_SYSTEMD) $(DEST_SYSTEMD)