diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-03 23:51:40 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-03 23:51:40 +0100 |
commit | 591524c53001470b285ad24a29e6a05a9eba913a (patch) | |
tree | 475412caccd78af33bed0cfc27b4144003f60870 | |
parent | 85606c86d190458fe347df3d4fe8cd97909740e1 (diff) | |
download | prosody-591524c53001470b285ad24a29e6a05a9eba913a.tar.gz prosody-591524c53001470b285ad24a29e6a05a9eba913a.zip |
certs/Makefile: Remove -c flag to chmod, which appears to be a GNUism ... again (thanks waqas)
-rw-r--r-- | certs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/certs/Makefile b/certs/Makefile index c709ff91..587fadc6 100644 --- a/certs/Makefile +++ b/certs/Makefile @@ -27,4 +27,4 @@ keysize=2048 %.key: umask 0077 && openssl genrsa -out $@ $(keysize) - @chmod 400 $@ -c + @chmod 400 $@ |