From cc54b786a79ad997b8e86735350904e301bb7b31 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Mon, 4 Nov 2013 15:43:57 +0100 Subject: [PATCH] build: set aux-dir If we don't set AUX_DIR, I get errors during ./configure: /bin/sh: /home/david/missing: No such file or directory configure: WARNING: 'missing' script is too old or missing This error is ignored by default, but may cause failures with newer autoconf versions. Simply set the AUX_DIR to "build-aux" like many other autotools projects do. [This is an automake 1.14 bug, see the upstream report: http://lists.gnu.org/archive/html/bug-automake/2013-11/msg00007.html] Signed-off-by: David Herrmann Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 2e53d95..9e122f0 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,7 @@ AC_INIT([libevdev], AC_CONFIG_SRCDIR([libevdev/libevdev.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_AUX_DIR([build-aux]) AC_USE_SYSTEM_EXTENSIONS AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz]) -- 2.7.4