mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
fix destdir prefix for mandir..
need this fix to prevent sandbox errors in gentoo..
This commit is contained in:
parent
ef003b76c2
commit
2a1546aa74
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -54,11 +54,11 @@ install: all
|
||||||
$(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
|
$(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
|
||||||
$(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
|
$(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
|
||||||
gzip -kf i3lock.1
|
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:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock
|
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock
|
||||||
rm -f $(MANDIR)/man1/i3lock.1.gz
|
rm -f $(DESTDIR)$(MANDIR)/man1/i3lock.1.gz
|
||||||
|
|
||||||
dist: clean
|
dist: clean
|
||||||
[ ! -d i3lock-${VERSION} ] || rm -rf i3lock-${VERSION}
|
[ ! -d i3lock-${VERSION} ] || rm -rf i3lock-${VERSION}
|
||||||
|
|
Loading…
Reference in a new issue