From d86083003f05adf1ef9d9c217d93fc83cec9ec1c 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 5e67436..dd921f3 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ AS_VERSION(THIS_PACKAGE, TELEPATHY_SIP_VERSION, VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO, VERSION_NANO, IS_RELEASE="yes", IS_RELEASE="no") -AM_INIT_AUTOMAKE([1.9 -Wno-portability]) +AM_INIT_AUTOMAKE([1.9 -Wno-portability subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) AC_DISABLE_SHARED -- 1.8.4.rc3