Actions
Bug #153
closed
AM
DG
build dependency issue with make -j12
Bug #153:
build dependency issue with make -j12
Start date:
03/06/2012
Due date:
% Done:
100%
Estimated time:
Description
Based on 97e1904 Fix error.h non-static variables for liblttng-ctl
Steps to reproduce:
make clean make -j12
Error received:
make[3]: *** No rule to make target `../../src/common/libcompat.la', needed by `libconsumer.la'. Stop.
Proposed fix:
diff --git a/src/common/Makefile.am b/src/common/Makefile.am
index ba93810..b9a1663 100644
--- a/src/common/Makefile.am
+++ b/src/common/Makefile.am
@@ -30,7 +30,7 @@ libconsumer_la_LIBADD = \
$(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
$(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \
$(top_builddir)/src/common/hashtable/libhashtable.la \
- $(top_builddir)/src/common/libcompat.la
+ libcompat.la
if HAVE_LIBLTTNG_UST_CTL
libconsumer_la_LIBADD += \
Actions