From e4db6887c7a9b8fc79cdf2798662b60b39422c2f Mon Sep 17 00:00:00 2001 From: Rob Staudinger Date: Tue, 10 Jan 2012 14:13:59 +0100 Subject: [PATCH] build: move "docs" to come last in the toplevel Makefile's SUBDIRS The docs build depends on generated headers for the DBus interfaces, so it needs to come after the very generation of those. --- Makefile.am | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index e404bf1..efd2c30 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,8 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = \ tp-qt4-tools \ - tp-glib-tools \ - docs + tp-glib-tools if ENABLE_QT4 SUBDIRS += TelepathyYtstenutQt4 @@ -13,6 +12,9 @@ if ENABLE_GLIB SUBDIRS += telepathy-ytstenut-glib endif +# Build docs last because they depend on generated dbus headers +SUBDIRS += docs + GIT = git GZIP = gzip TAR = tar -- 1.7.7.5