BIND 10 trac1253, updated. 6b206d435a3dd92ef4a18f1c4558da147016fe4f [1253] Fix dependencies in Makefile
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Oct 5 13:46:03 UTC 2011
The branch, trac1253 has been updated
via 6b206d435a3dd92ef4a18f1c4558da147016fe4f (commit)
from e114429f15c0ff8b5eb77728985281afcfc0d37a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6b206d435a3dd92ef4a18f1c4558da147016fe4f
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Wed Oct 5 15:41:47 2011 +0200
[1253] Fix dependencies in Makefile
Autotools don't track dependencies on libraries with absolute path. As
the library lives in the same directory, the directory order does not
help, so we need the dep to be tracked explicitly, which means we need
to use relative path.
The old version breaks with make -j<a lot>.
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/Makefile.am b/src/lib/datasrc/Makefile.am
index 16634ff..bf1171e 100644
--- a/src/lib/datasrc/Makefile.am
+++ b/src/lib/datasrc/Makefile.am
@@ -28,13 +28,13 @@ nodist_libdatasrc_la_SOURCES = datasrc_messages.h datasrc_messages.cc
sqlite3_ds_la_SOURCES = sqlite3_accessor.h sqlite3_accessor.cc
sqlite3_ds_la_LDFLAGS = -module
sqlite3_ds_la_LIBADD = $(top_builddir)/src/lib/exceptions/libexceptions.la
-sqlite3_ds_la_LIBADD += $(top_builddir)/src/lib/datasrc/libdatasrc.la
+sqlite3_ds_la_LIBADD += libdatasrc.la
sqlite3_ds_la_LIBADD += $(SQLITE_LIBS)
memory_ds_la_SOURCES = memory_datasrc.h memory_datasrc.cc
memory_ds_la_LDFLAGS = -module
memory_ds_la_LIBADD = $(top_builddir)/src/lib/exceptions/libexceptions.la
-memory_ds_la_LIBADD += $(top_builddir)/src/lib/datasrc/libdatasrc.la
+memory_ds_la_LIBADD += libdatasrc.la
libdatasrc_la_LIBADD = $(top_builddir)/src/lib/exceptions/libexceptions.la
libdatasrc_la_LIBADD += $(top_builddir)/src/lib/dns/libdns++.la
More information about the bind10-changes
mailing list