From 49bc7e4f64ac5e2b236fa51e4e07cbcc621539ba Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Mon, 5 Sep 2022 01:08:47 +0200 Subject: [PATCH] [SKIP CI] makefiles: make them compliant I think Signed-off-by: Sam Therapy --- GNUmakefile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index a5ab92d..5e7fab3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -19,5 +19,5 @@ install: all install -Dm755 $(PROG) $(DESTDIR)$(PREFIX)/$(BIN)/$(PROG) install -Dm644 doc/$(PROG).1 $(DESTDIR)$(MAN)/man1/$(PROG).1 # completions need to go in one specific place :) - install -Dm644 completions/zsh.zsh $(DESTDIR)/usr/$(SHARE)/zsh/site-functions/_$(PROG) + install -Dm644 completions/zsh.zsh $(DESTDIR)/$(PREFIX)/$(SHARE)/zsh/site-functions/_$(PROG) endif diff --git a/Makefile b/Makefile index d8777ec..d8d8c68 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,4 @@ install: all install -Dm755 $(PROG) $(DESTDIR)$(PREFIX)/$(BIN)/$(PROG) install -Dm644 doc/$(PROG).1 $(DESTDIR)$(MAN)/man1/$(PROG).1 # completions need to go in one specific place :) - install -Dm644 completions/zsh.zsh $(DESTDIR)/usr/$(SHARE)/zsh/site-functions/_$(PROG) \ No newline at end of file + install -Dm644 completions/zsh.zsh $(DESTDIR)/$(PREFIX)/$(SHARE)/zsh/site-functions/_$(PROG) \ No newline at end of file