guile-devel
[Top][All Lists]
Advanced

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

Re: strange stuff


From: Lars J. Aas
Subject: Re: strange stuff
Date: Mon, 25 Jun 2001 10:45:18 +0200
User-agent: Mutt/1.2.5i

On Mon, Jun 25, 2001 at 02:57:35AM +0200, Marius Vollmer wrote:
: Dirk Herrmann <address@hidden> writes:
: >   [...]
: >   loading cache /dev/null
: >   ./configure: .: /dev/null: not a regular file
: >   [...]
: 
: I do not get this.  It could be that not all your configure scripts
: have been recreated using autoconf 2.50.

If I'm not mistaken, this looks like libtool 1.3.5 ltconfig behaviour.
If you want to remove this and support bootstrapping with libtool 1.3.5
you can probably wrap the following around the AC_PROG_LIBTOOL
invocation.

# This is a hack to avoid sending /dev/null as cache_file to ltconfig.
if test x"$cache_file" = x"/dev/null"; then
  fake_cache=/tmp/fakecache.$$
  echo : >$fake_cache
  cache_file=$fake_cache
fi
AC_PROG_LIBTOOL
if test x"$fake_cache" != x""; then
  cache_file=/dev/null
  rm -f $fake_cache
fi

  Lars J



reply via email to

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