1From 54e7e0bda02099ae9d1c42abed1932ffa8d354e8 Mon Sep 17 00:00:00 2001 2From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> 3Date: Tue, 1 May 2018 22:28:52 +0200 4Subject: [PATCH] automake: add subdir-objects option 5 6Our version of automake warns if this option is enabled and source files 7in subdirectories are used. 8 9It doesn't really seems to have a noticable effect on the build, but it 10does remove a lot of annoying warnings. 11 12Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> 13--- 14 configure.ac | 2 +- 15 1 file changed, 1 insertion(+), 1 deletion(-) 16 17diff --git a/configure.ac b/configure.ac 18index 206690b468..dfb4c1c329 100644 19--- a/configure.ac 20+++ b/configure.ac 21@@ -24,7 +24,7 @@ AC_CANONICAL_BUILD 22 AC_CANONICAL_HOST 23 AC_PRESERVE_HELP_ORDER 24 25-AM_INIT_AUTOMAKE(tar-ustar color-tests foreign) 26+AM_INIT_AUTOMAKE(tar-ustar color-tests foreign subdir-objects) 27 AC_CONFIG_HEADERS([config.h]) 28 29 AM_SILENT_RULES([yes]) 30-- 312.14.4 32 33