diff options
author | EuAndreh <eu@euandre.org> | 2021-06-26 16:47:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-26 16:47:36 -0300 |
commit | d7b4662ec0fc1e66f9c2a1429d6f71121107acf2 (patch) | |
tree | 24003728c7abea41caacbf709ceaf1ade38d9458 | |
parent | tests/install-uninstall.sh: Allow git-permalink to already be installed; laxe... (diff) | |
download | git-permalink-d7b4662ec0fc1e66f9c2a1429d6f71121107acf2.tar.gz git-permalink-d7b4662ec0fc1e66f9c2a1429d6f71121107acf2.tar.xz |
Makefile: Mark src/git-permalink as executable in "all" target
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,6 +23,7 @@ manpages.in = $(manpages.en.in) \ manpages = $(manpages.in:.in=) all: src/git-permalink $(manpages) + chmod +x src/git-permalink check: all sh tests/cli-opts.sh @@ -39,7 +40,6 @@ dev-check: check public install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp src/git-permalink $(DESTDIR)$(PREFIX)/bin/$(NAME) - chmod +x $(DESTDIR)$(PREFIX)/bin/$(NAME) sh aux/workflow/manpages.sh -ip $(DESTDIR)$(MANPREFIX) $(manpages) uninstall: |