From f40e18e6d1e442aecb41be365832a86aa9acab5d Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 16 Aug 2014 23:05:30 -0400 Subject: fix borky Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-54-g00ecf