From 4761a74abbbfc2e7ecc5d0f6e6828c27d6623204 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 17 Jan 2021 23:39:29 -0800 Subject: [PATCH] Removed -v flags from install --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 363cb74..4a18acf 100644 --- a/Makefile +++ b/Makefile @@ -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)";