aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2020-05-11 21:46:25 -0400
committerB. Watson <yalhcru@gmail.com>2020-05-11 21:46:25 -0400
commit37d219813e8c6d4370ee6cab4283b8f9cf7eebb9 (patch)
tree26300de4ce76076fcf11e05e71dc26466709f7de /Makefile
parent76abc3c5e0d5033c118e494171474eb4b99d432e (diff)
downloadmiragextract-37d219813e8c6d4370ee6cab4283b8f9cf7eebb9.tar.gz
install binaries as correct owner/group
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files 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