autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Please help


From: Bob Proulx
Subject: Re: Please help
Date: Thu, 25 Oct 2007 13:57:19 -0600
User-agent: Mutt/1.5.13 (2006-08-11)

[Seeing that everyone is subscribed I trimmed the To: back to just the
mailing list.]

Eric Blake wrote:
> Warren Young wrote:
> >> autoconf
> >> make: autoconf: Command not found
> > 
> > Maybe it's because the autoconf command is not found, which would happen
> > because the autoconf package is not installed.
> > 
> > The reason 'make' might require this are that either the package you are
> > using was configured for maintainer mode and you changed configure.ac or
> > one of the files it depends on, or it's just poorly designed, requiring
> > autoconf for more than just the developer machines.
> 
> Which means, unless you edited files, you have the right to complain to
> the package maintainer that they should clean up their distribution
> process.  One of the goals of autoconf is to create package distributions
> that can be installed independently of the existence of autoconf on the
> target machine.

It is possible for a builder to "clean up" for these types of problems
by setting all of the timestamps to the same value.  This will cause
'make' to think they are all up to date.  It is a brute-force solution
but should work around timestamp accidentally modified issues.

  find . -type f -print0 | xargs -r0 touch --reference .
  make clean
  make

Bob




reply via email to

[Prev in Thread] Current Thread [Next in Thread]