summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-05-04 08:30:25 +0200
committerErich Eckner <git@eckner.net>2016-05-04 08:30:25 +0200
commit7028b7ed93ddba4e062bb7abfbb723d4a0398e9c (patch)
treeba89f7875f9d975110bddd11bc8bcd9a4de52b8a
parent1fd1554d9a3e166632a9ba61ba1ee9afb926ed68 (diff)
downloadcrypt-expiry-check-7028b7ed93ddba4e062bb7abfbb723d4a0398e9c.tar.xz
bugfix chown->chmod in Makefile
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 08ad7d2..41c1528 100644
--- a/Makefile
+++ b/Makefile
@@ -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))