From dcd8801f75c17fae10ea800a737ef8b28d249670 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 26 Sep 2013 20:23:54 +0100 Subject: [PATCH 04/11] Use subdir-objects (compile a/b.c to a/b.lo, not ./b.lo) Automake 2 will make this the default, and 1.14 warns about not using it. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2fdff02..c5b945c 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_INIT([telepathy-mission-control], [5.16.99+]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR(Makefile.am) -AM_INIT_AUTOMAKE([1.9 tar-ustar -Wno-portability]) +AM_INIT_AUTOMAKE([1.9 tar-ustar -Wno-portability subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) AC_CONFIG_HEADERS(config.h) -- 1.8.4.rc3