diff options
author | Erich Eckner <git@eckner.net> | 2016-05-04 08:30:25 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-05-04 08:30:25 +0200 |
commit | 7028b7ed93ddba4e062bb7abfbb723d4a0398e9c (patch) | |
tree | ba89f7875f9d975110bddd11bc8bcd9a4de52b8a /Makefile | |
parent | 1fd1554d9a3e166632a9ba61ba1ee9afb926ed68 (diff) | |
download | crypt-expiry-check-7028b7ed93ddba4e062bb7abfbb723d4a0398e9c.tar.xz |
bugfix chown->chmod in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ install: all install -D -m0755 crypt-expiry-check $(DESTDIR)$(BINDIR)/crypt-expiry-check install -D -m0644 crypt-expiry-check.8 $(DESTDIR)$(MANDIR)/man8/crypt-expiry-check.8 touch $(DESTDIR)$(ETCDIR)/crypt-expiry.checks - chown 644 $(DESTDIR)$(ETCDIR)/crypt-expiry.checks + chmod 644 $(DESTDIR)$(ETCDIR)/crypt-expiry.checks dist: clean (cd .. && tar czvf crypt-expiry-check-$(VERSION).tar.gz crypt-expiry-check-$(VERSION)) |