couple minor git fixes
This commit is contained in:
parent
35f6281d8a
commit
2924c29092
3 changed files with 66 additions and 1 deletions
22
git-install-non-executable-doc-files.patch
Normal file
22
git-install-non-executable-doc-files.patch
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
No need to install documentation files as executable.
|
||||
|
||||
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
|
||||
---
|
||||
Documentation/Makefile | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Documentation/Makefile b/Documentation/Makefile
|
||||
index c00f5f6..d68bc4a 100644
|
||||
--- a/Documentation/Makefile
|
||||
+++ b/Documentation/Makefile
|
||||
@@ -56,8 +56,8 @@ man7: $(DOC_MAN7)
|
||||
|
||||
install: man
|
||||
$(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
|
||||
- $(INSTALL) $(DOC_MAN1) $(DESTDIR)$(man1dir)
|
||||
- $(INSTALL) $(DOC_MAN7) $(DESTDIR)$(man7dir)
|
||||
+ $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
|
||||
+ $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
|
||||
|
||||
|
||||
#
|
||||
Loading…
Add table
Add a link
Reference in a new issue