Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist
@ 2011-11-07 14:12 Gregory Haskins
  2011-11-07 15:39 ` Gregory Haskins
  2011-11-07 19:44 ` Mathieu Desnoyers
  0 siblings, 2 replies; 5+ messages in thread
From: Gregory Haskins @ 2011-11-07 14:12 UTC (permalink / raw)


"make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in
a build failure when an attempt to compile the tarball is make.  This patch addresses
the issue by properly including the file in Makefile.am.

Signed-off-by: Gregory Haskins <gregory.haskins at gmail.com>
---

 libringbuffer/Makefile.am |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am
index a64ee6e..f1e8a97 100644
--- a/libringbuffer/Makefile.am
+++ b/libringbuffer/Makefile.am
@@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing
 noinst_LTLIBRARIES = libringbuffer.la
 
 libringbuffer_la_SOURCES = \
-	shm.c \
-	shm.h \
-	smp.c \
-	shm.h shm_types.h shm_internal.h \
+	smp.h smp.c \
+	shm.c shm.h shm_types.h shm_internal.h \
 	ring_buffer_backend.c \
 	ring_buffer_frontend.c \
 	api.h \





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

* [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist
  2011-11-07 14:12 [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist Gregory Haskins
@ 2011-11-07 15:39 ` Gregory Haskins
  2011-11-07 15:39   ` Gregory Haskins
  2011-11-07 15:39   ` Gregory Haskins
  2011-11-07 19:44 ` Mathieu Desnoyers
  1 sibling, 2 replies; 5+ messages in thread
From: Gregory Haskins @ 2011-11-07 15:39 UTC (permalink / raw)


Sorry, I am a bit rusty on the patch submissions:  This patch applies to
lttng-ust.git 02a15cfb0d

On 11/7/11 9:12 AM, Gregory Haskins wrote:
> "make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in
> a build failure when an attempt to compile the tarball is make.  This patch addresses
> the issue by properly including the file in Makefile.am.
> 
> Signed-off-by: Gregory Haskins <gregory.haskins at gmail.com>
> ---
> 
>  libringbuffer/Makefile.am |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am
> index a64ee6e..f1e8a97 100644
> --- a/libringbuffer/Makefile.am
> +++ b/libringbuffer/Makefile.am
> @@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing
>  noinst_LTLIBRARIES = libringbuffer.la
>  
>  libringbuffer_la_SOURCES = \
> -	shm.c \
> -	shm.h \
> -	smp.c \
> -	shm.h shm_types.h shm_internal.h \
> +	smp.h smp.c \
> +	shm.c shm.h shm_types.h shm_internal.h \
>  	ring_buffer_backend.c \
>  	ring_buffer_frontend.c \
>  	api.h \
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 267 bytes
Desc: OpenPGP digital signature
URL: <http://lists.casi.polymtl.ca/pipermail/lttng-dev/attachments/20111107/6ecafb1f/attachment-0002.pgp>


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

* [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist
  2011-11-07 15:39 ` Gregory Haskins
@ 2011-11-07 15:39   ` Gregory Haskins
  2011-11-07 15:39   ` Gregory Haskins
  1 sibling, 0 replies; 5+ messages in thread
From: Gregory Haskins @ 2011-11-07 15:39 UTC (permalink / raw)


Sorry, I am a bit rusty on the patch submissions:  This patch applies to
lttng-ust.git 02a15cfb0d

On 11/7/11 9:12 AM, Gregory Haskins wrote:
> "make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in
> a build failure when an attempt to compile the tarball is make.  This patch addresses
> the issue by properly including the file in Makefile.am.
> 
> Signed-off-by: Gregory Haskins <gregory.haskins at gmail.com>
> ---
> 
>  libringbuffer/Makefile.am |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am
> index a64ee6e..f1e8a97 100644
> --- a/libringbuffer/Makefile.am
> +++ b/libringbuffer/Makefile.am
> @@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing
>  noinst_LTLIBRARIES = libringbuffer.la
>  
>  libringbuffer_la_SOURCES = \
> -	shm.c \
> -	shm.h \
> -	smp.c \
> -	shm.h shm_types.h shm_internal.h \
> +	smp.h smp.c \
> +	shm.c shm.h shm_types.h shm_internal.h \
>  	ring_buffer_backend.c \
>  	ring_buffer_frontend.c \
>  	api.h \
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 267 bytes
Desc: OpenPGP digital signature
URL: <http://lists.casi.polymtl.ca/pipermail/ltt-dev/attachments/20111107/6ecafb1f/attachment.pgp>


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

* [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist
  2011-11-07 15:39 ` Gregory Haskins
  2011-11-07 15:39   ` Gregory Haskins
@ 2011-11-07 15:39   ` Gregory Haskins
  1 sibling, 0 replies; 5+ messages in thread
From: Gregory Haskins @ 2011-11-07 15:39 UTC (permalink / raw)


Sorry, I am a bit rusty on the patch submissions:  This patch applies to
lttng-ust.git 02a15cfb0d

On 11/7/11 9:12 AM, Gregory Haskins wrote:
> "make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in
> a build failure when an attempt to compile the tarball is make.  This patch addresses
> the issue by properly including the file in Makefile.am.
> 
> Signed-off-by: Gregory Haskins <gregory.haskins at gmail.com>
> ---
> 
>  libringbuffer/Makefile.am |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am
> index a64ee6e..f1e8a97 100644
> --- a/libringbuffer/Makefile.am
> +++ b/libringbuffer/Makefile.am
> @@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing
>  noinst_LTLIBRARIES = libringbuffer.la
>  
>  libringbuffer_la_SOURCES = \
> -	shm.c \
> -	shm.h \
> -	smp.c \
> -	shm.h shm_types.h shm_internal.h \
> +	smp.h smp.c \
> +	shm.c shm.h shm_types.h shm_internal.h \
>  	ring_buffer_backend.c \
>  	ring_buffer_frontend.c \
>  	api.h \
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 267 bytes
Desc: OpenPGP digital signature
URL: <http://lists.casi.polymtl.ca/pipermail/lttng-dev/attachments/20111107/6ecafb1f/attachment-0003.pgp>


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

* [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist
  2011-11-07 14:12 [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist Gregory Haskins
  2011-11-07 15:39 ` Gregory Haskins
@ 2011-11-07 19:44 ` Mathieu Desnoyers
  1 sibling, 0 replies; 5+ messages in thread
From: Mathieu Desnoyers @ 2011-11-07 19:44 UTC (permalink / raw)


* Gregory Haskins (gregory.haskins at gmail.com) wrote:
> "make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in
> a build failure when an attempt to compile the tarball is make.  This patch addresses
> the issue by properly including the file in Makefile.am.

merged, thanks!

Mathieu

> 
> Signed-off-by: Gregory Haskins <gregory.haskins at gmail.com>
> ---
> 
>  libringbuffer/Makefile.am |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am
> index a64ee6e..f1e8a97 100644
> --- a/libringbuffer/Makefile.am
> +++ b/libringbuffer/Makefile.am
> @@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing
>  noinst_LTLIBRARIES = libringbuffer.la
>  
>  libringbuffer_la_SOURCES = \
> -	shm.c \
> -	shm.h \
> -	smp.c \
> -	shm.h shm_types.h shm_internal.h \
> +	smp.h smp.c \
> +	shm.c shm.h shm_types.h shm_internal.h \
>  	ring_buffer_backend.c \
>  	ring_buffer_frontend.c \
>  	api.h \
> 
> 
> _______________________________________________
> ltt-dev mailing list
> ltt-dev at lists.casi.polymtl.ca
> http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev
> 

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com




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

end of thread, other threads:[~2011-11-07 19:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-07 14:12 [ltt-dev] [PATCH] Fix problem with including libringbuffer/smp.h in make-dist Gregory Haskins
2011-11-07 15:39 ` Gregory Haskins
2011-11-07 15:39   ` Gregory Haskins
2011-11-07 15:39   ` Gregory Haskins
2011-11-07 19:44 ` Mathieu Desnoyers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox