From a5e4f34dbbe75ea8c4f39e3d294494e9b1fac474 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 25 Jan 2010 18:27:24 +0000 Subject: [PATCH] Fix documentation installation, no need for executable permission (thanks to Peter)(EJAB-1170) SVN Revision: 2923 --- src/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 915ea0ee6..1a52db44e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -235,9 +235,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