From: Mathieu Desnoyers Date: Sat, 21 May 2011 21:06:06 +0000 (-0400) Subject: Add missing libadd X-Git-Tag: v0.1~37 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=f7a47a6c23fa21c319f15bb254a82f56c381f45d Add missing libadd For gcc 4.6. Signed-off-by: Mathieu Desnoyers --- diff --git a/formats/ctf-text/Makefile.am b/formats/ctf-text/Makefile.am index 15fe22f6..8db9f39a 100644 --- a/formats/ctf-text/Makefile.am +++ b/formats/ctf-text/Makefile.am @@ -8,4 +8,5 @@ libctf_text_la_SOURCES = \ ctf-text.c libctf_text_la_LIBADD = \ - types/libctf-text-types.la + types/libctf-text-types.la \ + ../libbabeltrace_registry.la diff --git a/formats/ctf/Makefile.am b/formats/ctf/Makefile.am index 5e665429..620f7bd8 100644 --- a/formats/ctf/Makefile.am +++ b/formats/ctf/Makefile.am @@ -10,4 +10,5 @@ libctf_la_SOURCES = \ libctf_la_LIBADD = \ types/libctf-types.la \ metadata/libctf-parser.la \ - metadata/libctf-ast.la + metadata/libctf-ast.la \ + ../libbabeltrace_registry.la