From 6d321050e53f030609844493165a4a18bdabfa41 Mon Sep 17 00:00:00 2001 From: Fredrik Gustafsson Date: Fri, 11 Oct 2019 12:08:24 +0200 Subject: [PATCH] Change permissions for sudo to 4555 Currently the permissions for abuild-sudo is set to 4111, this make it impossible to move the sudo file after it has being created. Moving the sudo file is needed by yocto when creating an apk-package of abuild. The sudo binary in debian stretch since if debian does it, it can't be bad. Signed-off-by: Fredrik Gustafsson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0106f68..e41707b 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,7 @@ install: $(USR_BIN_FILES) $(SAMPLES) abuild.conf functions.sh for i in $(USR_BIN_FILES); do\ install -m 755 $$i $(DESTDIR)/$(bindir)/$$i;\ done - chmod 4111 $(DESTDIR)/$(prefix)/bin/abuild-sudo + chmod 4555 $(DESTDIR)/$(prefix)/bin/abuild-sudo for i in adduser addgroup apk; do \ ln -fs abuild-sudo $(DESTDIR)/$(bindir)/abuild-$$i; \ done