[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: gEDA-user: gnetlist: ERROR: Unbound variable: primitive-fork
Hi,
>By using grep, as you suggested, I think I found which script is causing the
>error ... but it is written in a (to me) foreign language: guile :-)
>The file is /usr/share/guile/1.6/ice-9/popen.scm, see below.
Here's something to try. Run guile and type:
primitive-fork
at the guile> prompt. On my machine it outputs:
#<primitive-procedure primitive-fork>
which is what I expect. On your machine this should fail with
an unbound variable error message.
If it does fail, that means that just your guile install is somehow
fubar. It would be interesting to _just_ rebuild guile (but don't install it),
point gschem and friends at the build directories (at runtime, without
a gEDA rebuild) and see if that fixes the problem. Doing this is
fairly easy.
Rebuilding guile is as simple as (should be):
tar xvfz guile-1.6.4.tar.gz
cd guile-1.6.4
./configure
make
-Ales