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 | ff99ebb6045e126c16027d2cccf3d7fb1ed7af1c (patch) | |
tree | 278cd1d08091bff252b5e4a9e3272c7f471e84b6 | |
parent | 640e2c9b1775e25e7b0388506f56288706b28e31 (diff) | |
download | prosody-ff99ebb6045e126c16027d2cccf3d7fb1ed7af1c.tar.gz prosody-ff99ebb6045e126c16027d2cccf3d7fb1ed7af1c.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 $@ |