diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-02 16:48:43 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-09 18:42:58 +0100 |
commit | 48f72075ee0e7246886d6b64243bf45767cbb2fd (patch) | |
tree | 9fe256b06d36cf1e32a84affae1762431defc41e | |
parent | d1418d203adaa3b9f48dae98128a5d89b1955654 (diff) |
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.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=70045
Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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 |