From 37d219813e8c6d4370ee6cab4283b8f9cf7eebb9 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 11 May 2020 21:46:25 -0400 Subject: install binaries as correct owner/group --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9284898..2cca374 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ endif install: all man html mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MAN1DIR) $(DESTDIR)$(DOCDIR) cp $(PROJ) $(DESTDIR)$(BINDIR) - $(CHOWN) root:root $(DESTDIR)$(BINDIR)/$(PROJ) + $(CHOWN) $(OWNER):$(GROUP) $(DESTDIR)$(BINDIR)/$(PROJ) chmod 755 $(DESTDIR)$(BINDIR)/$(PROJ) ifeq ($(STRIPBIN),y) strip $(DESTDIR)$(BINDIR)/$(PROJ) @@ -101,7 +101,7 @@ test: all ./$(PROJ) test.cue push: all man html - git add $(PROJ).1 $(PROJ).html + git add $(MANS) $(HTMLS) git commit -m'auto-regenerate man/html pages' || true git push -- cgit v1.2.3