2ea206b4d7
- The suid permission bit was incorrectly being set. It is now gone. See #32156 - The upstream README indicates a move to a new GH account.
19 lines
440 B
Diff
19 lines
440 B
Diff
Do not apply the setuid permission bit on the vpsm script
|
|
|
|
See https://github.com/void-linux/void-packages/issues/32156
|
|
see https://github.com/sineto/vpsm/pull/2
|
|
|
|
|
|
--
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -16,7 +16,7 @@
|
|
|
|
.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
|