diff options
| author | Michael Stapelberg | 2010-04-06 14:39:16 +0200 | 
|---|---|---|
| committer | Michael Stapelberg | 2010-04-06 14:39:16 +0200 | 
| commit | 7665643894cf20108ba01b7fed6bc9f2fe452668 (patch) | |
| tree | a01401eb9c62541bbc1125ef40eed04eb13b56da | |
| parent | ipv6: don't require a title for config option (diff) | |
makefile: don’t fail if setcap is unsuccessful
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -54,7 +54,7 @@ install:  	install -m 755 -d $(DESTDIR)/usr/share/man/man1  	install -m 755 i3status $(DESTDIR)/usr/bin/i3status  	# Allow network configuration for getting the link speed -	which setcap && setcap cap_net_admin=ep $(DESTDIR)/usr/bin/i3status +	(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 | 
