From 96a323e16a1f3e99d0b498aa90423b060c3d458f Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 19 May 2015 13:31:26 +0200 Subject: [PATCH] Remove info-in-builddir option from AM_INIT_AUTOMAKE(). This option is not supported by older, but still widely used versions of automake. The drawback is that when doing multiple VPATH builds in a row, the info manual may mention incorrect paths, but it doesn't affect the executables at all. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 120a8db5..4c5c0560 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ(2.61) AC_INIT([tinc], m4_esyscmd_s((git describe || echo UNKNOWN) | sed 's/release-//')) AC_CONFIG_SRCDIR([src/tincd.c]) AC_GNU_SOURCE -AM_INIT_AUTOMAKE([info-in-builddir std-options subdir-objects -Wall]) +AM_INIT_AUTOMAKE([std-options subdir-objects -Wall]) AC_CONFIG_HEADERS([config.h]) # Enable GNU extensions. -- 2.20.1