From 852e4c6dd25f30d7a6be944b8715e501257a8eb9 Mon Sep 17 00:00:00 2001 From: Earnestly Date: Tue, 19 Apr 2016 19:43:44 +0100 Subject: [PATCH] Remove AC_CONFIG_AUX_DIR This is half an issue report and half a pull request. The reason for this is that while autoreconf -fi works for most of the needed scripts it doesn't copy ltmain.sh into build-aux which results the following ./configure failure: configure.ac:137: error: required file 'build-aux/ltmain.sh' not found This patch, which is a similar one I've provided to cloog[0] which allows ./configure to at least complete. I'm not sure what you think since obviously the directory was used for some reason, likely to reduce top-level directory clutter, but this at least works for me. 0 https://groups.google.com/forum/?hl=en#!topic/cloog-development/28_M3Qk87-Q Signed-off-by: Earnestly --- configure.ac | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.ac b/configure.ac index ea0b627..0e6d3f0 100644 --- a/configure.ac +++ b/configure.ac @@ -19,9 +19,6 @@ AC_CONFIG_MACRO_DIR([m4]) # place where portability library functions are kept AC_CONFIG_LIBOBJ_DIR([lib]) -# place to put some extra build scripts installed -AC_CONFIG_AUX_DIR([build-aux]) - # really severe build strictness AM_INIT_AUTOMAKE([-Wall gnits 1.11.2]) # Change to using into-in-builddir in the future: -- 2.40.0