[gobolinux-users] ACM and Compile...

Lucas C. Villa Real lucasvr at gobolinux.org
Mon Jul 23 05:29:37 UTC 2007


On 7/18/07, kenneth marken <k-marken at online.no> wrote:
> im trying to get this going:
> http://www.websimulations.com/index.htm
>
> the recipe is generated without any problems, but when i go compile i get a
> error from configure about the use of --sysconfdir
>
> it tells me to check --help for proper usage, but when i do it seems that
> Compile is doing everything right. all in all things just dont make sense...

Hi,

The problem is that there are 2 ancient configure scripts in the
subdirs "dis" and "dis/disgen" which doesn't accept --sysconfdir by
default. A simple fix for that is to run "autoconf" before trying to
invoke configure:

pre_build() {
    echo "Running autoconf..."
    ( cd dis; autoconf; )
    ( cd dis/disgen; autoconf; )
}

Now, since the build system is going to rely in Autoconf's existence,
it's a good idea to create a file named "Resources/BuildDependencies"
and put "Autoconf" there.

-- 
Lucas
powered by /dev/dsp


More information about the gobolinux-users mailing list