mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
Makefile: Prefer directories as the target for install commands.
I was confusing myself with some rules installing to directories and some installing to files. We do still install to a filename when simultaneously renaming, (such as notmuch-completion.bash to notmuch).
This commit is contained in:
parent
8e95cf4232
commit
9c2d0714fe
1 changed files with 2 additions and 2 deletions
|
@ -29,8 +29,8 @@ install: all notmuch.1.gz
|
|||
do \
|
||||
install -C -d $$d ; \
|
||||
done ;
|
||||
install -C notmuch $(DESTDIR)/usr/bin/notmuch
|
||||
install -C notmuch.1.gz $(DESTDIR)/usr/share/man/man1
|
||||
install -C notmuch $(DESTDIR)/usr/bin/
|
||||
install -C notmuch.1.gz $(DESTDIR)/usr/share/man/man1/
|
||||
install -C notmuch-completion.bash \
|
||||
$(DESTDIR)/etc/bash_completion.d/notmuch
|
||||
|
||||
|
|
Loading…
Reference in a new issue