GNU bug report logs -
#15593
unnecessarily created autom4ate.cache directory
Previous Next
Reported by: Ondřej Bílka <neleai <at> seznam.cz>
Date: Fri, 11 Oct 2013 21:35:03 UTC
Severity: normal
Tags: notabug
Done: Eric Blake <eblake <at> redhat.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 11 Oct 2013 17:22:12 -0600
with message-id <52588824.3090506 <at> redhat.com>
and subject line Re: bug#15593: unnecessarily created autom4ate.cache directory
has caused the debbugs.gnu.org bug report #15593,
regarding unnecessarily created autom4ate.cache directory
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
15593: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15593
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi, A glibc supports builds only from separate build directory than source
directory. In source directory a autom4ate.cache is created.
See following bug entry.
https://sourceware.org/bugzilla/show_bug.cgi?id=14120
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
tag 15593 notabug
thanks
On 10/11/2013 10:24 AM, Ondřej Bílka wrote:
> Hi, A glibc supports builds only from separate build directory than source
> directory. In source directory a autom4ate.cache is created.
>
> See following bug entry.
> https://sourceware.org/bugzilla/show_bug.cgi?id=14120
How is this an automake bug? Automake doesn't create autom4te.cache;
that's autoconf (via the autom4te program shipped as part of the
autoconf package). But such a directory is only created if you are
actually running one or more of the autotools; you should be figuring
out what in glibc's configure script is running autotools during
configure (the normal configure script is intentionally independent of
autotools, where only the maintainer has a cache file when they ran
autoreconf, but where end users do NOT get a cache file by just running
path/to/configure).
Looking at glibc's configure.in (eww, outdated name; these days
autotools prefer configure.ac), I see:
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
That's your culprit.
It is also possible to create a ./.autom4te.cfg file to explicitly
request that autom4te always use the --no-cache option to avoid creating
a cache directory (this is documented in the autoconf manual [1]).
[1]
https://www.gnu.org/software/autoconf/manual/autoconf.html#Customizing-autom4te
I'm closing this as not an automake bug, although do feel free to
continue asking questions in this thread.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[signature.asc (application/pgp-signature, attachment)]
This bug report was last modified 11 years and 223 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.