From fe390611f22d84749f6e6f4ab32ae024154fb47e Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 2 Oct 2013 16:48:43 +0100 Subject: [PATCH 1/3] 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. Equivalent to MC commit 1f11065. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6c901ea..ae53561 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_INIT([Telepathy Gabble], [gabble_version], AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.9 -Wno-portability tar-ustar]) +AM_INIT_AUTOMAKE([1.9 -Wno-portability tar-ustar subdir-objects]) AM_CONFIG_HEADER(config.h) AC_USE_SYSTEM_EXTENSIONS -- 1.8.4.rc3