summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2011-08-27 15:24:03 +0200
committerMichael Stapelberg <michael@stapelberg.de>2011-08-27 15:24:03 +0200
commit8317709b95a7d61dc99b13f197093f23c197fbf6 (patch)
tree60008b7fddd1a8f1a9dd15564fda97d4c6846364 /Makefile
parent7870fdae8652dcb67c09dc57d3588ca6bb14dbf2 (diff)
Makefile: actually use PREFIX (Thanks cls)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 644edd1..436c204 100644
--- a/Makefile
+++ b/Makefile
@@ -61,14 +61,14 @@ manpage:
$(MAKE) -C man
install:
- install -m 755 -d $(DESTDIR)/usr/bin
- install -m 755 -d $(DESTDIR)/etc
- install -m 755 -d $(DESTDIR)/usr/share/man/man1
- install -m 755 i3status $(DESTDIR)/usr/bin/i3status
+ install -m 755 -d $(DESTDIR)$(PREFIX)/usr/bin
+ install -m 755 -d $(DESTDIR)$(PREFIX)/etc
+ install -m 755 -d $(DESTDIR)$(PREFIX)/usr/share/man/man1
+ install -m 755 i3status $(DESTDIR)$(PREFIX)/usr/bin/i3status
# Allow network configuration for getting the link speed
- (which setcap && setcap cap_net_admin=ep $(DESTDIR)/usr/bin/i3status) || true
- install -m 644 i3status.conf $(DESTDIR)/etc/i3status.conf
- install -m 644 man/i3status.1 $(DESTDIR)/usr/share/man/man1
+ (which setcap && setcap cap_net_admin=ep $(DESTDIR)$(PREFIX)/usr/bin/i3status) || true
+ install -m 644 i3status.conf $(DESTDIR)$(PREFIX)/etc/i3status.conf
+ install -m 644 man/i3status.1 $(DESTDIR)$(PREFIX)/usr/share/man/man1
release:
[ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION}