aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl
diff options
context:
space:
mode:
authorHolger Weiß <[email protected]>2011-06-05 22:51:36 +0200
committerHolger Weiß <[email protected]>2011-06-05 22:51:36 +0200
commitd0fb46f556bc7abf9018f402832c138c201f2b05 (patch)
tree90f04d566f81dbb4205624d77abae90d0151536d /lib/sasl
parentf6a77186a608fb08e2ffc65d06c4166b7127e4a0 (diff)
downloadotp-d0fb46f556bc7abf9018f402832c138c201f2b05.tar.gz
otp-d0fb46f556bc7abf9018f402832c138c201f2b05.tar.bz2
otp-d0fb46f556bc7abf9018f402832c138c201f2b05.zip
Again: Call chmod without the "-f" flag
Commit 7ed11a886fc8fcaf3c2b8324294e2f24e02b0f28 removed the "-f" flag from chmod calls in Makefiles: | "-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. Meanwhile, new "chmod -f" calls have been added. This commit removes the "-f" flag from those new calls.
Diffstat (limited to 'lib/sasl')
-rw-r--r--lib/sasl/examples/src/Makefile2
-rw-r--r--lib/sasl/test/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sasl/examples/src/Makefile b/lib/sasl/examples/src/Makefile
index 4a4e04a536..c58f651696 100644
--- a/lib/sasl/examples/src/Makefile
+++ b/lib/sasl/examples/src/Makefile
@@ -66,7 +66,7 @@ release_spec: opt
$(INSTALL_DIR) $(RELSYSDIR)/examples/src
$(INSTALL_DIR) $(RELSYSDIR)/examples/ebin
(cd ..; tar cf - src ebin | (cd $(RELSYSDIR)/examples; tar xf -))
- chmod -f -R ug+w $(RELSYSDIR)/examples
+ chmod -R ug+w $(RELSYSDIR)/examples
release_docs_spec:
diff --git a/lib/sasl/test/Makefile b/lib/sasl/test/Makefile
index ad08c8136b..2d92305fcf 100644
--- a/lib/sasl/test/Makefile
+++ b/lib/sasl/test/Makefile
@@ -85,7 +85,7 @@ release_tests_spec: make_emakefile
$(INSTALL_DIR) $(RELSYSDIR)
$(INSTALL_DATA) $(ERL_FILES) $(RELSYSDIR)
$(INSTALL_DATA) sasl.spec sasl.cover $(EMAKEFILE) $(RELSYSDIR)
- chmod -f -R u+w $(RELSYSDIR)
+ chmod -R u+w $(RELSYSDIR)
@tar cfh - *_SUITE_data | (cd $(RELSYSDIR); tar xf -)
release_docs_spec: