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 | f8b911269b90918b014319cbdda32eedc687d941 (patch) | |
tree | 475412caccd78af33bed0cfc27b4144003f60870 /certs/Makefile | |
parent | 98df7c1fb7b94934ba4615606609bd7061396343 (diff) | |
download | prosody-f8b911269b90918b014319cbdda32eedc687d941.tar.gz prosody-f8b911269b90918b014319cbdda32eedc687d941.zip |
certs/Makefile: Remove -c flag to chmod, which appears to be a GNUism ... again (thanks waqas)
Diffstat (limited to 'certs/Makefile')
-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 $@ |