From 67f54aa720282ab77d92d007c2001ba9c1403d25 Mon Sep 17 00:00:00 2001 From: Workantile Date: Thu, 9 Apr 2015 19:55:14 +0000 Subject: [PATCH] Makefile fixes The install command makes files executable by default, but we only want doorsd to be executable. Signed-off-by: Workantile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b1e47ee..bd78f24 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ install: install -v doors.py /usr/bin/doorsd - install -D -v doorsrc /etc/doorsrc - install -v doorsd.service /usr/lib/systemd/system/doorsd.service + install -m 644 -D -v doorsrc /etc/doorsrc + install -m 644 -v doorsd.service /usr/lib/systemd/system/doorsd.service uninstall: rm -v /usr/bin/doorsd /etc/doorsrc