]> granicus.if.org Git - check/commitdiff
remove AC_CONFIG_AUX_DIR in example
authorBranden Archer <b.m.archer4@gmail.com>
Wed, 20 Apr 2016 13:28:25 +0000 (09:28 -0400)
committerBranden Archer <b.m.archer4@gmail.com>
Wed, 20 Apr 2016 13:28:25 +0000 (09:28 -0400)
Potentially due to changes in automake and autoreconf

  https://www.gnu.org/software/automake/manual/html_node/Error-required-file-ltmain_002esh-not-found.html

the ltmain.sh script, generated by libtoolize, does not seem to honor the AC_CONFIG_AUX_DIR parameter. As a
result, the configure script will fail. To work around this, remove the AC_CONFIG_AUX_DIR option
to place all generated scripts into the current directory.

doc/example/configure.ac

index 9796ba8ad04f3e65743aff152638aac3e348b7bf..bf630fe013c18544884edc72d3b75996ae17c06a 100644 (file)
@@ -8,9 +8,6 @@ AM_PROG_AR
 # unique source file --- primitive safety check 
 AC_CONFIG_SRCDIR([src/money.c])
 
-# place to put some extra build scripts installed
-AC_CONFIG_AUX_DIR([build-aux])
-
 # fairly severe build strictness
 # change foreign to gnu or gnits to comply with gnu standards
 AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.11.2])