* [PATCH] librdmacm: fix make install @ 2010-10-22 11:56 Jonathan Rosser 2010-10-22 16:53 ` Hefty, Sean 0 siblings, 1 reply; 4+ messages in thread From: Jonathan Rosser @ 2010-10-22 11:56 UTC (permalink / raw) To: linux-rdma-u79uwXL29TY76Z2rM5mHXA make install fails if the include files in the install prefix include/rdma,infiniband already exist. install claims that the <src> and <destination> file are the same and exits with an error. This patch modifies Makefile.am so that the rdma and infiniband include files explicitly reference the source directory rather than the build directory. Also, EXTRA_DIST now only lists files that are not referenced anywhere else in Makefile.am --- Makefile.am | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2668aa3..8790fe8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,11 +35,11 @@ examples_rdma_server_LDADD = $(top_builddir)/src/librdmacm.la librdmacmincludedir = $(includedir)/rdma infinibandincludedir = $(includedir)/infiniband -librdmacminclude_HEADERS = include/rdma/rdma_cma_abi.h \ - include/rdma/rdma_cma.h \ - include/rdma/rdma_verbs.h +librdmacminclude_HEADERS = $(top_srcdir)/include/rdma/rdma_cma_abi.h \ + $(top_srcdir)/include/rdma/rdma_cma.h \ + $(top_srcdir)/include/rdma/rdma_verbs.h -infinibandinclude_HEADERS = include/infiniband/ib.h +infinibandinclude_HEADERS = $(top_srcdir)/include/infiniband/ib.h man_MANS = \ man/rdma_accept.3 \ @@ -97,9 +97,7 @@ man_MANS = \ man/rdma_client.1 \ man/rdma_cm.7 -EXTRA_DIST = include/rdma/rdma_cma_abi.h include/rdma/rdma_cma.h \ - include/infiniband/ib.h include/rdma/rdma_verbs.h \ - src/cma.h src/librdmacm.map librdmacm.spec.in $(man_MANS) +EXTRA_DIST = src/cma.h src/librdmacm.map librdmacm.spec.in $(man_MANS) dist-hook: librdmacm.spec cp librdmacm.spec $(distdir) -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [PATCH] librdmacm: fix make install 2010-10-22 11:56 [PATCH] librdmacm: fix make install Jonathan Rosser @ 2010-10-22 16:53 ` Hefty, Sean [not found] ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25B809B18A-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Hefty, Sean @ 2010-10-22 16:53 UTC (permalink / raw) To: Jonathan Rosser, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Can you please resubmit both patches with signed-off-by lines? Thanks, Sean -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <CF9C39F99A89134C9CF9C4CCB68B8DDF25B809B18A-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>]
* Re: [PATCH] librdmacm: fix make install [not found] ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25B809B18A-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org> @ 2010-10-25 9:51 ` Jonathan Rosser 2010-10-25 12:26 ` Jonathan Rosser 0 siblings, 1 reply; 4+ messages in thread From: Jonathan Rosser @ 2010-10-25 9:51 UTC (permalink / raw) To: linux-rdma-u79uwXL29TY76Z2rM5mHXA make install fails if the include files in the install prefix include/rdma,infiniband already exist. install claims that the <src> and <destination> file are the same and exits with an error. This patch modifies Makefile.am so that the rdma and infiniband include files explicitly reference the source directory rather than the build directory. Also, EXTRA_DIST now only lists files that are not referenced anywhere else in Makefile.am Signed-off-by: Jonathan Rosser <jrosser-gjMux1o1B1/QXOPxS62xeg@public.gmane.org> --- Makefile.am | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2668aa3..8790fe8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,11 +35,11 @@ examples_rdma_server_LDADD = $(top_builddir)/src/librdmacm.la librdmacmincludedir = $(includedir)/rdma infinibandincludedir = $(includedir)/infiniband -librdmacminclude_HEADERS = include/rdma/rdma_cma_abi.h \ - include/rdma/rdma_cma.h \ - include/rdma/rdma_verbs.h +librdmacminclude_HEADERS = $(top_srcdir)/include/rdma/rdma_cma_abi.h \ + $(top_srcdir)/include/rdma/rdma_cma.h \ + $(top_srcdir)/include/rdma/rdma_verbs.h -infinibandinclude_HEADERS = include/infiniband/ib.h +infinibandinclude_HEADERS = $(top_srcdir)/include/infiniband/ib.h man_MANS = \ man/rdma_accept.3 \ @@ -97,9 +97,7 @@ man_MANS = \ man/rdma_client.1 \ man/rdma_cm.7 -EXTRA_DIST = include/rdma/rdma_cma_abi.h include/rdma/rdma_cma.h \ - include/infiniband/ib.h include/rdma/rdma_verbs.h \ - src/cma.h src/librdmacm.map librdmacm.spec.in $(man_MANS) +EXTRA_DIST = src/cma.h src/librdmacm.map librdmacm.spec.in $(man_MANS) dist-hook: librdmacm.spec cp librdmacm.spec $(distdir) -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] librdmacm: fix make install 2010-10-25 9:51 ` Jonathan Rosser @ 2010-10-25 12:26 ` Jonathan Rosser 0 siblings, 0 replies; 4+ messages in thread From: Jonathan Rosser @ 2010-10-25 12:26 UTC (permalink / raw) To: linux-rdma-u79uwXL29TY76Z2rM5mHXA On 10/25/10 10:51, Jonathan Rosser wrote: > > Signed-off-by: Jonathan Rosser > <jrosser-gjMux1o1B1/QXOPxS62xeg@public.gmane.org> > --- Oh right. gmane obfuscates my address in the patch too. Ho-hum. Replace with jonathan.rosser @ rd. bbc. co. uk for a real address. Sorry about that. Regards, Jonathan. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-10-25 12:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-22 11:56 [PATCH] librdmacm: fix make install Jonathan Rosser
2010-10-22 16:53 ` Hefty, Sean
[not found] ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25B809B18A-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2010-10-25 9:51 ` Jonathan Rosser
2010-10-25 12:26 ` Jonathan Rosser
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.