diff options
author | Ori Bernstein <ori@eigenstate.org> | 2013-01-20 03:14:27 -0500 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2013-01-20 03:14:27 -0500 |
commit | 2eddcc6deec6ea6b858f25959554ddc6c439856f (patch) | |
tree | 02045f85c8e880a2e7f93ebbe48f0ed19a4132f3 | |
parent | a98cf550205f7de6a88a644f028c4bc02f3af1da (diff) | |
download | mc-2eddcc6deec6ea6b858f25959554ddc6c439856f.tar.gz |
Install all the things with the right permissions.
-rw-r--r-- | doc/Makefile | 2 | ||||
-rw-r--r-- | mk/c.mk | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile index 070ebc7..b419bc6 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -7,7 +7,7 @@ include ../config.mk all: install: - @echo install $(MAN) $(INST_ROOT)/share/man/man1; \ + @echo install -m 644 $(MAN) $(INST_ROOT)/share/man/man1; \ mkdir -p $(INST_ROOT)/share/man/man1; \ install -m 644 $(MAN) $(INST_ROOT)/share/man/man1; \ @@ -60,9 +60,9 @@ install-bin: $(INSTBIN) install-lib: $(INSTLIB) @if [ ! -z "$(INSTLIB)" ]; then \ - echo install $(INSTLIB) $(INST_ROOT)/lib; \ + echo install -m 644 $(INSTLIB) $(INST_ROOT)/lib; \ mkdir -p $(INST_ROOT)/lib; \ - install $(INSTLIB) $(INST_ROOT)/lib; \ + install -m 644 $(INSTLIB) $(INST_ROOT)/lib; \ fi install-hdr: $(INSTHDR) |