diff options
author | Wolfgang Müller | 2022-03-03 15:15:19 +0100 |
---|---|---|
committer | Wolfgang Müller | 2022-03-03 15:15:19 +0100 |
commit | 92ba675e4bffaca19af1d354783c33b0d9dca069 (patch) | |
tree | 08e1d05dc899eb85829c555b4949ddaea79ac553 /Makefile | |
parent | 65e9587af04fcae23c9d0cf37f185b7555435256 (diff) | |
download | git-helpers-92ba675e4bffaca19af1d354783c33b0d9dca069.tar.gz |
Rename git-init-shared(1) to git-init-acl(1)
We have always felt that the name of this program was too close to the
invocation of 'git init --shared' which does something similar. Make it
clear in the name that we're working with POSIX ACLs instead of normal
permission sets as 'git init --shared' does.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ PREFIX ?= /usr/local -install: git-init-shared git-init-shared.1 git-package git-package.1 git-sign-for-cgit git-sign-for-cgit.1 - install -D -m 755 -t '${DESTDIR}${PREFIX}/bin' git-init-shared git-package git-sign-for-cgit - install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' git-init-shared.1 git-package.1 git-sign-for-cgit.1 +install: git-init-acl git-init-acl.1 git-package git-package.1 git-sign-for-cgit git-sign-for-cgit.1 + install -D -m 755 -t '${DESTDIR}${PREFIX}/bin' git-init-acl git-package git-sign-for-cgit + install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' git-init-acl.1 git-package.1 git-sign-for-cgit.1 .PHONY: install |