aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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