diff options
author | Holger Weiß <[email protected]> | 2011-06-05 22:51:36 +0200 |
---|---|---|
committer | Holger Weiß <[email protected]> | 2011-06-05 22:51:36 +0200 |
commit | d0fb46f556bc7abf9018f402832c138c201f2b05 (patch) | |
tree | 90f04d566f81dbb4205624d77abae90d0151536d /lib/dialyzer/test/Makefile | |
parent | f6a77186a608fb08e2ffc65d06c4166b7127e4a0 (diff) | |
download | otp-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/dialyzer/test/Makefile')
-rw-r--r-- | lib/dialyzer/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/test/Makefile b/lib/dialyzer/test/Makefile index 69a8fd742e..47deb17f1d 100644 --- a/lib/dialyzer/test/Makefile +++ b/lib/dialyzer/test/Makefile @@ -26,7 +26,7 @@ include $(ERL_TOP)/make/otp_release_targets.mk release_tests_spec: $(INSTALL_DIR) $(RELSYSDIR) - chmod -f -R u+w $(RELSYSDIR) + chmod -R u+w $(RELSYSDIR) $(INSTALL_DATA) $(AUXILIARY_FILES) $(RELSYSDIR) @tar cf - *_SUITE_data | (cd $(RELSYSDIR); tar xf -) cd $(RELSYSDIR);\ |