aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2015-01-14 19:08:55 +0100
committerEnrico Tassi2015-01-14 19:08:55 +0100
commit8050c90b1cfc755abb16c83df0eebaed85cd67d2 (patch)
tree7f487b881b9a68d1b3d54c078cc69cf9942db1c1
parent819f31ec6c8d0b43ac4b62bcecc6b2facbc01a71 (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 b73fdba1e6..ac3f6fc8b3 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:";