summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-08-16 23:05:30 -0400
committerDave Reisner <dreisner@archlinux.org>2014-08-16 23:05:30 -0400
commitf40e18e6d1e442aecb41be365832a86aa9acab5d (patch)
tree6b84eec2de3bde263a7506b6f06c09baef95ae85 /Makefile
parenta32225831ef5c1cdd96521fe244bbc8b470badf3 (diff)
downloadasp32-f40e18e6d1e442aecb41be365832a86aa9acab5d.tar.xz
fix borky Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2a2798c..28f5298 100644
--- a/Makefile
+++ b/Makefile
@@ -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