diff options
author | Badlop <badlop@process-one.net> | 2010-01-25 18:40:17 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2010-01-25 18:40:17 +0000 |
commit | 4fe8d76b8323b49744e644b9468caae6ab5af3f2 (patch) | |
tree | e39da03a66681e2e855111a1d03f242f3c1c1ddb | |
parent | Fix typo in EJABBERD_BIN_PATH (thanks to Martin Langhoff)(EJAB-891) (diff) |
Fix documentation installation, no need for executable permission (thanks to Peter)(EJAB-1170)
SVN Revision: 2926
-rw-r--r-- | src/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 3d2bf318c..8485caa09 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -239,9 +239,9 @@ install: all # # Documentation install -d $(DOCDIR) - install ../doc/guide.html $(DOCDIR) - install ../doc/*.png $(DOCDIR) - install ../doc/*.txt $(DOCDIR) + install -m 644 ../doc/guide.html $(DOCDIR) + install -m 644 ../doc/*.png $(DOCDIR) + install -m 644 ../doc/*.txt $(DOCDIR) uninstall: uninstall-binary |