diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-17 23:39:29 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-17 23:39:29 -0800 |
| commit | 4761a74abbbfc2e7ecc5d0f6e6828c27d6623204 (patch) | |
| tree | 4bbd74e97c363a8f6c2e82e5514d3f7bd0126aa7 | |
| parent | 0979e9d68dc5fad0f1d2d62d1c64349c5fa31835 (diff) | |
Removed -v flags from install
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,10 +29,10 @@ leaktest: install: $(NAME) mkdir -p -m 755 "$(PREFIX)/share/man/man1" "$(PREFIX)/bin" "$(SYSCONFDIR)/xdg/$(NAME)" - cp -rv grammars/* "$(SYSCONFDIR)/xdg/$(NAME)/" - cp -v bp.1 "$(PREFIX)/share/man/man1/$(NAME).1" + cp -r grammars/* "$(SYSCONFDIR)/xdg/$(NAME)/" + cp bp.1 "$(PREFIX)/share/man/man1/$(NAME).1" rm -f "$(PREFIX)/bin/$(NAME)" - cp -v $(NAME) "$(PREFIX)/bin/" + cp $(NAME) "$(PREFIX)/bin/" uninstall: rm -rvf "$(PREFIX)/bin/$(NAME)" "$(PREFIX)/share/man/man1/$(NAME).1" "$(SYSCONFDIR)/xdg/$(NAME)"; |
