diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-08 17:01:23 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-08 17:01:23 +0000 |
commit | e3a8fa54c027a6d8e87f67cdd134e608f76c76e4 (patch) | |
tree | 5e91591091105dfea76479ec0e403861c30f72a9 | |
parent | 6d97b7d9d390309b640ffe6b3908baa96234f784 (diff) | |
download | prosody-e3a8fa54c027a6d8e87f67cdd134e608f76c76e4.tar.gz prosody-e3a8fa54c027a6d8e87f67cdd134e608f76c76e4.zip |
certs/Makefile: Remove -c flag to chmod, which appears to be a GNUism (thanks Kev)
-rw-r--r-- | certs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/certs/Makefile b/certs/Makefile index 54835883..c5e4294c 100644 --- a/certs/Makefile +++ b/certs/Makefile @@ -27,4 +27,4 @@ keysize=2048 %.key: openssl genrsa $(keysize) > $@ - @chmod 400 -c $@ + @chmod 400 $@ |