From d2ce31785a0dc3a822ff7d49faea033fc2e4456f Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sat, 18 Sep 2021 14:16:15 +0200 Subject: [PATCH] Makefile: do not install with setuid bit setting the setuid bit on shell scripts doesn't make sense --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d5eb103..88e4549 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ clean: .PHONY: install install: - install -Dm4755 vpsm $(DESTDIR)$(PREFIX)/bin/vpsm + install -Dm755 vpsm $(DESTDIR)$(PREFIX)/bin/vpsm install -Dm644 man/vpsm.1 $(DESTDIR)/$(PREFIX)/share/man/man1/vpsm.1 .PHONY: uninstall