All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] fix install perms of manpages
@ 2007-09-17 19:30 Mike Frysinger
  2007-09-19 20:49 ` Josh Triplett
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2007-09-17 19:30 UTC (permalink / raw)
  To: linux-sparse

[-- Attachment #1: Type: text/plain, Size: 731 bytes --]

the install step for manpages currently does not use the -m option which means
perms default to 755 which makes no sense for man pages

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
diff --git a/Makefile b/Makefile
index 2475e12..bd5fb96 100644
--- a/Makefile
+++ b/Makefile
@@ -81,7 +81,7 @@ install: $(INST_PROGRAMS) $(LIBS) $(LIB_H) sparse.pc
 		$(QUIET_INST_SH)install -v $$f $(DESTDIR)$(BINDIR)/$$f || exit 1; \
 	done
 	$(Q)for f in $(INST_MAN1); do \
-		$(QUIET_INST_SH)install -v $$f $(DESTDIR)$(MAN1DIR)/$$f || exit 1; \
+		$(QUIET_INST_SH)install -m 644 -v $$f $(DESTDIR)$(MAN1DIR)/$$f || exit 1; \
 	done
 	$(Q)for f in $(LIBS); do \
 		$(QUIET_INST_SH)install -m 644 -v $$f $(DESTDIR)$(LIBDIR)/$$f || exit 1; \

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 827 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [patch] fix install perms of manpages
  2007-09-17 19:30 [patch] fix install perms of manpages Mike Frysinger
@ 2007-09-19 20:49 ` Josh Triplett
  0 siblings, 0 replies; 2+ messages in thread
From: Josh Triplett @ 2007-09-19 20:49 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: linux-sparse

[-- Attachment #1: Type: text/plain, Size: 264 bytes --]

Mike Frysinger wrote:
> the install step for manpages currently does not use the -m option which means
> perms default to 755 which makes no sense for man pages
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Applied; thanks.

- Josh Triplett



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 252 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-09-19 20:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-17 19:30 [patch] fix install perms of manpages Mike Frysinger
2007-09-19 20:49 ` Josh Triplett

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.