diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-08-16 23:05:30 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-08-16 23:05:30 -0400 |
commit | f40e18e6d1e442aecb41be365832a86aa9acab5d (patch) | |
tree | 6b84eec2de3bde263a7506b6f06c09baef95ae85 /Makefile | |
parent | a32225831ef5c1cdd96521fe244bbc8b470badf3 (diff) | |
download | asp32-f40e18e6d1e442aecb41be365832a86aa9acab5d.tar.xz |
fix borky Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,7 +39,8 @@ clean: $(RM) $(BINPROGS) $(MANPAGES) install: all - install -Dm755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin + install -dm755 $(DESTDIR)$(PREFIX)/bin + install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin install -Dm644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp |