From 87d228c979f6ae6c5af0ee4302918c232a0280d4 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 2 Oct 2013 16:48:43 +0100 Subject: [PATCH 2/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 93df250..e488883 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ AC_CONFIG_AUX_DIR([build-aux]) # configure or passing V=1 to make m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -AM_INIT_AUTOMAKE([1.9 -Wno-portability]) +AM_INIT_AUTOMAKE([1.9 -Wno-portability subdir-objects]) AM_PROG_LIBTOOL AM_CONFIG_HEADER(config.h) -- 1.8.4.rc3