Jim Meyering wrote: > Are you interested in working on it? It seems to be easy enough to fix, so I pushed the following (this is like what we already did with coreutils):
>From 5ee3301166337746b10c9264517106df6f753a89 Mon Sep 17 00:00:00 2001 From: Paul Eggert <[email protected]> Date: Sun, 20 Oct 2013 19:41:27 -0700 Subject: [PATCH] build: avoid chatter from Automake 1.14 * configure.ac (AM_INIT_AUTOMAKE): Add subdir-objects. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ab7d387..b1393db 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,8 @@ AC_DEFINE([GREP], 1, [We are building grep]) AC_PREREQ(2.59) dnl Automake stuff. -AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz color-tests parallel-tests]) +AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz color-tests parallel-tests + subdir-objects]) AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. AC_CONFIG_HEADERS([config.h:config.hin]) -- 1.8.3.1
