On Wed, Oct 08, 2003 at 11:12:07AM +0200, Kai Ludwig wrote: > if test "x$gui" = xtrue; then > AC_CONFIG_SUBDIRS(Utilities GUI) > else > if test "x$model" = xtrue; then > AC_CONFIG_SUBDIRS(Model) > else > AC_CONFIG_SUBDIRS(Utilities GUI Model) > fi > fi
> configure.in:29: error: `Utilities' is already registered with > AC_CONFIG_SUBDIRS. > /usr/local/src/autoconf/autoconf-2.57/lib/autoconf/status.m4:1073: > AC_CONFIG_SUBDIRS is expanded from... > configure.in:29: the top level I think here the problem is space characters in a SUBDIRS value. Try to us AC_CONFIG_SUBDIRS("Utilities GUI") or something like it But, may be I wrong e