Hi, On Fri, 2007-08-24 at 13:12 +0200, Mark Wielaard wrote: > common/Makefile.rules:101: variable `GEN_GCJ_LDADD' is defined but no program or > common/Makefile.rules:101: library has `GEN_GCJ' as canonic name (possible typo) > Makefile.am:40: `common/Makefile.rules' included from here > Problem in directory frysk-imports > ../frysk/autogen.sh: line 57: ../frysk/configure: No such file or directory > > The reason I didn't see it before was that I wasn't doing a full clean > build and there was still an old configure file left. Investigating. OK, found it. automake thinks anything ending in _LDADD is "magic". So a simple change to use a non-magic-sounding variable fixes things: common/ChangeLog 2007-08-24 Mark Wielaard * Makefile.rules: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. * Makefile.gen.sh: Likewise. frysk-core/ChangeLog 2007-08-24 Mark Wielaard * Makefile.am: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. frysk-gtk/ChangeLog 2007-08-24 Mark Wielaard * Makefile.am: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. frysk-gui/ChangeLog 2007-08-24 Mark Wielaard * Makefile.am: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. frysk-imports/ChangeLog 2007-08-24 Mark Wielaard * Makefile.am: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. frysk-sys/ChangeLog 2007-08-24 Mark Wielaard * Makefile.am: Change GEN_GCJ_LDADD to GEN_GCJ_LDADD_LIST. Tested on FC6 with automake 1.9.6 and F7 with automake 1.10. I don't know why this wasn't a problem before the removal of fryski though. So some extra testing is appreciated. Cheers, Mark