From: David Herrmann Date: Mon, 4 Nov 2013 14:43:57 +0000 (+0100) Subject: build: set aux-dir X-Git-Tag: libevdev-0.6~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc54b786a79ad997b8e86735350904e301bb7b31;p=platform%2Fupstream%2Flibevdev.git 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 --- 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])