All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 6/8] libmpathcmd: Do not install header file as executable
@ 2016-06-03  6:40 Hannes Reinecke
  2016-06-03  6:42 ` Christophe Varoqui
  0 siblings, 1 reply; 2+ messages in thread
From: Hannes Reinecke @ 2016-06-03  6:40 UTC (permalink / raw)
  To: Christophe Varoqui; +Cc: dm-devel, Hannes Reinecke

Our build system complained that the mpath_cmd.h header file is
installed as executable.

Signed-off-by: Hannes Reinecke <hare@suse.com>
---
 libmpathcmd/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libmpathcmd/Makefile b/libmpathcmd/Makefile
index 0304ecc..6fca165 100644
--- a/libmpathcmd/Makefile
+++ b/libmpathcmd/Makefile
@@ -19,7 +19,7 @@ install: $(LIBS)
 	$(INSTALL_PROGRAM) -m 755 $(LIBS) $(DESTDIR)$(syslibdir)/$(LIBS)
 	ln -sf $(LIBS) $(DESTDIR)$(syslibdir)/$(DEVLIB)
 	$(INSTALL_PROGRAM) -d $(DESTDIR)$(incdir)
-	$(INSTALL_PROGRAM) -m 755 mpath_cmd.h $(DESTDIR)$(incdir)
+	$(INSTALL_PROGRAM) -m 644 mpath_cmd.h $(DESTDIR)$(incdir)
 
 uninstall:
 	rm -f $(DESTDIR)$(syslibdir)/$(LIBS)
-- 
2.6.6

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

end of thread, other threads:[~2016-06-03  6:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-03  6:40 [PATCH 6/8] libmpathcmd: Do not install header file as executable Hannes Reinecke
2016-06-03  6:42 ` Christophe Varoqui

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.