From 8265f87dce761eb834e2992a9c605c84b02e30be Mon Sep 17 00:00:00 2001 From: "U-X1\\korpela" Date: Fri, 2 May 2014 09:19:28 -0700 Subject: [PATCH] Got rid of the subdir-objects because it breaks depfiles. So will live with the warnings for now. --- configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6b5f601439..3b22bf47fd 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,13 @@ AC_CANONICAL_TARGET dnl generate .tar.gz, .tar.bz2, .zip dnl AM_INIT_AUTOMAKE(dist-bzip2 dist-zip) -AM_INIT_AUTOMAKE(dist-zip subdir-objects) + +dnl subdir-objects is supposed to become the default soon, but specifying it +dnl breaks depfile generation. We'll worry about it when that happens. +dnl AM_INIT_AUTOMAKE(dist-zip subdir-objects) + +AM_INIT_AUTOMAKE(dist-zip) + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR(lib/shmem.cpp)