diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 17:29:42 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 17:29:42 +0200 |
commit | 3746fb0a839852e389913020ea4a2dc781a0584c (patch) | |
tree | 25c7a08e389f5e52df8bbd4058188493c3dbbb82 | |
parent | f1cb89ffc320cdf945b3bd87bab5762749bd6eac (diff) |
Install lacme(1) into /usr/sbin.
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -33,7 +33,9 @@ install: ${MANPAGES} install -d $(DESTDIR)/usr/share/man/man1 install -m0644 -t $(DESTDIR)/usr/share/man/man1 lacme-accountd.1 lacme.1 install -d $(DESTDIR)/usr/bin - install -m0644 -t $(DESTDIR)/usr/bin lacme-accountd lacme + install -m0644 -t $(DESTDIR)/usr/bin lacme-accountd + install -d $(DESTDIR)/usr/sbin + install -m0644 -t $(DESTDIR)/usr/bin lacme clean: rm -vf ${MANPAGES} |