aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2015-01-14 19:08:55 +0100
committerMaxime Dénès2015-01-15 06:58:06 +0100
commit79d10e9527ceff4f07c581b0ac971e761351ad24 (patch)
tree946feaefbad74aba35f7faa9130e9a1012b3997e
parent0ee33883c790d00f5d94953fd1a95ed4fca2d5ed (diff)
coq_makefile: chmod 755 on toplopp cmxs
-rw-r--r--tools/coq_makefile.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coq_makefile.ml b/tools/coq_makefile.ml
index 83df394829..d877ed564a 100644
--- a/tools/coq_makefile.ml
+++ b/tools/coq_makefile.ml
@@ -270,7 +270,7 @@ let install (vfiles,(mlifiles,ml4files,mlfiles,mllibfiles,mlpackfiles),_,sds) in
if (not_empty cmxsfiles) then begin
print "install-toploop: $(MLLIBFILES:.mllib=.cmxs)\n";
printf "\t install -d \"$(DSTROOT)\"$(COQTOPINSTALL)/\n";
- printf "\t install -m 0644 $? \"$(DSTROOT)\"$(COQTOPINSTALL)/\n";
+ printf "\t install -m 0755 $? \"$(DSTROOT)\"$(COQTOPINSTALL)/\n";
print "\n";
end;
print "install:";