[ghemical-devel] support for MPQC v2 was added

Michael Banck mbanck@gmx.net
Tue, 21 May 2002 17:54:09 +0200


On Tue, May 21, 2002 at 05:36:09PM +0200, Michael Banck wrote:
> On Tue, May 21, 2002 at 06:17:42PM +0300, Tommi Hassinen wrote:
> > I can send you logs and/or other files if you still wish to keep on
> > studying this problem.
> 
> Uh, don't worry. I've finally downloaded all the Build-Dependencies to
> my main / (was building ghemical in a chroot before, but that is
> notoriously tight on space), and now I've got the same problem as you
> have :-/

OK, here it is:

Apparently, top_builddir is an internal variable or something since
autoconf2.53 (and not in 2.52, which I got installed in my somewhat
outdated woody chroot).

So, this simple patch seems to work:

--- ../ghemical/configure.in    Tue May 21 15:09:32 2002
+++ configure.in        Tue May 21 17:38:10 2002
@@ -13,8 +13,8 @@

 AC_CANONICAL_HOST

-top_builddir=`pwd`
-AC_SUBST(top_builddir)
+top_builddir_=`pwd`
+AC_SUBST(top_builddir_)
 AC_DEFINE(VERSION, "0.83")
 AC_SUBST(VERSION, "0.83")

--- ../ghemical/Makefile.in     Thu Jan 10 23:45:34 2002
+++ Makefile.in Tue May 21 17:38:01 2002
@@ -15,7 +15,7 @@
 top_srcdir=     @top_srcdir@
 srcdir=         @srcdir@
 VPATH=          @srcdir@
-top_builddir=  @top_builddir@
+top_builddir=  @top_builddir_@

 # Program paths
 SHELL=         @SHELL@

Feel free to rename @top_builddir_@ to your taste :)

OK, I'm building ghemical again right now, works fine so far.

bye,

Michael