diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |