commit db3e169243c01d3cd44cb9a1e7fee121c04421b1
parent ef003b76c22c7c99602c1cd5fe71317fb4605697
Author: Chris Guillott <chris@techfo.xyz>
Date: Tue, 18 Oct 2016 18:05:07 -0400
Merge pull request #12 from evilbulgarian/master
fix destdir prefix for mandir..
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -51,14 +51,15 @@ clean:
install: all
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
+ $(INSTALL) -d $(DESTDIR)$(MANDIR)/man1
$(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
$(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
gzip -kf i3lock.1
- $(INSTALL) -m 644 i3lock.1.gz $(MANDIR)/man1/i3lock.1.gz
+ $(INSTALL) -m 644 i3lock.1.gz $(DESTDIR)$(MANDIR)/man1/i3lock.1.gz
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock
- rm -f $(MANDIR)/man1/i3lock.1.gz
+ rm -f $(DESTDIR)$(MANDIR)/man1/i3lock.1.gz
dist: clean
[ ! -d i3lock-${VERSION} ] || rm -rf i3lock-${VERSION}