void-packages/srcpkgs/vpsm/patches/setuid-fix.patch
0x5c 2ea206b4d7 vpsm: update upstream, clean suid bit
- 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.
2022-04-03 10:29:19 +02:00

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