diff options
author | Holger Weiß <[email protected]> | 2010-11-15 12:05:16 +0100 |
---|---|---|
committer | Holger Weiß <[email protected]> | 2010-11-15 12:05:16 +0100 |
commit | 7ed11a886fc8fcaf3c2b8324294e2f24e02b0f28 (patch) | |
tree | 9540d086acb305494f50f64253d6380927ba2b2f /lib/ssl/examples/certs | |
parent | f26528bbea0a24674e797a58b97117c1f8cf163f (diff) | |
download | otp-7ed11a886fc8fcaf3c2b8324294e2f24e02b0f28.tar.gz otp-7ed11a886fc8fcaf3c2b8324294e2f24e02b0f28.tar.bz2 otp-7ed11a886fc8fcaf3c2b8324294e2f24e02b0f28.zip |
Call chmod without the "-f" flag
"-f" is a non-standard chmod option which at least SGI IRIX and HP UX do
not support. As the only effect of the "-f" flag is to suppress warning
messages, it can be safely omitted.
Diffstat (limited to 'lib/ssl/examples/certs')
-rw-r--r-- | lib/ssl/examples/certs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/examples/certs/Makefile b/lib/ssl/examples/certs/Makefile index b811b461dc..a4f067ade6 100644 --- a/lib/ssl/examples/certs/Makefile +++ b/lib/ssl/examples/certs/Makefile @@ -57,5 +57,5 @@ release_spec: opt $(INSTALL_DIR) $(RELSYSDIR)/examples/certs tar cf - etc | \ (cd $(RELSYSDIR)/examples/certs; tar xf -) - chmod -f -R ug+rw $(RELSYSDIR)/examples + chmod -R ug+rw $(RELSYSDIR)/examples release_docs_spec: |