diff options
| author | Michael Soegtrop | 2019-08-25 10:31:38 +0200 |
|---|---|---|
| committer | Michael Soegtrop | 2019-08-25 14:07:22 +0200 |
| commit | 0ee40cbbf7df4c25a89920c4781c0bf23728c0cd (patch) | |
| tree | 0f10fffba5e4c5615cd45ac2ee3a16e5b34ecfb4 /Makefile.build | |
| parent | ce235f3d84faef3f4cc5d00373a50e03031541e5 (diff) | |
Changed chmod -w to chmod a-w to avoid error on cygwin
Diffstat (limited to 'Makefile.build')
| -rw-r--r-- | Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.build b/Makefile.build index c4c65d31cf..610af5fe40 100644 --- a/Makefile.build +++ b/Makefile.build @@ -397,7 +397,7 @@ doc_gram_rsts: doc/tools/docgram/orderedGrammar # Specific rules for Uint63 ########################################################################### kernel/uint63.ml: kernel/uint63_$(OCAML_INT_SIZE).ml - rm -f $@ && cp $< $@ && chmod -w $@ + rm -f $@ && cp $< $@ && chmod a-w $@ ########################################################################### # Main targets (coqtop.opt, coqtop.byte) |
