> I decided to move AC_CONFIG_AUX_DIR($1) up: Move it reeaaaalllyyyy up. Just after AC_CONFIG_SRCDIR or if you don't have it, after AC_INIT.
> AC_DEFUN([CL_MODULE_COMMON_CHECKS],[dnl > AC_CONFIG_AUX_DIR($1)dnl > AC_REQUIRE([AC_PROG_CC])dnl > AC_REQUIRE([AC_PROG_CPP])dnl > AC_REQUIRE([AC_GNU_SOURCE])dnl > AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])dnl > AC_CHECK_HEADERS(time.h sys/time.h)dnl > ]) > > and indeed now the configure files have just one section trying to set > ac_aux_dir, but this section somehow comes after the AC_CANONICAL_BUILD > (which I do not call myself): That's a missing dependancy of AC_CANONICAL_BUILD on AC_CONFIG_AUX_DIR_DEFAULT. Paolo
