From: Mukund Sivaraman Date: Tue, 9 Oct 2012 20:04:36 +0000 (+0530) Subject: [2198] Build threads directory first because . depends on it X-Git-Tag: trac2402_base~10^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a4ef3221c7ea7347a11e02b9e8175598e3eb2ec;p=thirdparty%2Fkea.git [2198] Build threads directory first because . depends on it --- diff --git a/src/lib/util/Makefile.am b/src/lib/util/Makefile.am index 13f8f7b595..23d140a7b9 100644 --- a/src/lib/util/Makefile.am +++ b/src/lib/util/Makefile.am @@ -1,4 +1,5 @@ -SUBDIRS = . io unittests tests pyunittests python threads +# InterprocessSyncFile has a dependency on isc::util::thread::Mutex +SUBDIRS = threads . io unittests tests pyunittests python AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util @@ -31,7 +32,8 @@ libb10_util_la_SOURCES += random/random_number_generator.h EXTRA_DIST = python/pycppwrapper_util.h -libb10_util_la_LIBADD = $(top_builddir)/src/lib/exceptions/libb10-exceptions.la +libb10_util_la_LIBADD = $(top_builddir)/src/lib/exceptions/libb10-exceptions.la +libb10_util_la_LIBADD += $(top_builddir)/src/lib/util/threads/libb10-threads.la CLEANFILES = *.gcno *.gcda libb10_util_includedir = $(includedir)/$(PACKAGE_NAME)/util