summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-08-17 07:53:05 -0400
committerDave Reisner <dreisner@archlinux.org>2014-08-17 07:53:05 -0400
commit017f2f5fd5003613d92ed96829ffab385aaae27b (patch)
treeda28a20c71758aedd9f8328674a67d69d21fc3fe /Makefile
parent784a38709849f25b71cab585c73c6ba509de38ad (diff)
downloadasp32-017f2f5fd5003613d92ed96829ffab385aaae27b.tar.xz
fix manpage installation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 28f5298..3c516a1 100644
--- a/Makefile
+++ b/Makefile
@@ -39,9 +39,9 @@ clean:
$(RM) $(BINPROGS) $(MANPAGES)
install: all
- install -dm755 $(DESTDIR)$(PREFIX)/bin
+ install -dm755 $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1
install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin
- install -Dm644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
+ install -m644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp
dist: