This is the mail archive of the
glibc-bugs@sourceware.org
mailing list for the glibc project.
[Bug build/14120] build process creates autom4te.cache directory in source dir
- From: "eblake at redhat dot com" <sourceware-bugzilla at sourceware dot org>
- To: glibc-bugs at sourceware dot org
- Date: Fri, 11 Oct 2013 23:23:29 +0000
- Subject: [Bug build/14120] build process creates autom4te.cache directory in source dir
- Auto-submitted: auto-generated
- References: <bug-14120-131 at http dot sourceware dot org/bugzilla/>
https://sourceware.org/bugzilla/show_bug.cgi?id=14120
--- Comment #7 from Eric Blake <eblake at redhat dot com> ---
Here's the culprit in your configure.in (by the way, newer autotools recommend
the name configure.ac, not .in):
AC_CHECK_PROGS(AUTOCONF, autoconf, no)
case "x$AUTOCONF" in
xno|x|x:) AUTOCONF=no ;;
*)
AC_CACHE_CHECK(dnl
whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works, libc_cv_autoconf_works, [dnl
if (cd $srcdir; $AUTOCONF $ACFLAGS configure.in > /dev/null 2>&1); then
libc_cv_autoconf_works=yes
else
libc_cv_autoconf_works=no
fi])
test $libc_cv_autoconf_works = yes || AUTOCONF=no
;;
esac
if test "x$AUTOCONF" = xno; then
aux_missing="$aux_missing autoconf"
fi
Fix that macro to quit trying to run autoconf in $(srcdir) as part of
configure, and you will no longer be stuck with a cache file in $(srcdir).
--
You are receiving this mail because:
You are on the CC list for the bug.