diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-08-17 07:53:05 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-08-17 07:53:05 -0400 |
commit | 017f2f5fd5003613d92ed96829ffab385aaae27b (patch) | |
tree | da28a20c71758aedd9f8328674a67d69d21fc3fe /Makefile | |
parent | 784a38709849f25b71cab585c73c6ba509de38ad (diff) | |
download | asp32-017f2f5fd5003613d92ed96829ffab385aaae27b.tar.xz |
fix manpage installation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |