Ben Kelly writes:
 > > make[3]: g-wrap-guile: Command not found
 > 
 > I think your problem is that you don't have guile installed.
 > g-wrap-guile uses the #! convention for running itself using a
 > different interpreter, in this case guile.  When the shell can't
 > find that interpreter it spits out that your script doesn't exist.

I would suggest that the problem is in the following two lines taken
from src/g-wrap/Makefile.in.  Firstly, g-wrap-guile is not on the path
(well, it's not on *my* path anyway), and secondly it's not marked
executable.

%.c %.h: %.gwp
        g-wrap-guile $^

Instead, they should look like this:

%.c %.h: %.gwp
        $(SHELL) $(top_srcdir)/g-wrap-guile $^

That's fine enough, but doing this results in g-wrap-guile complaining:

ERROR: In procedure gsubr-apply in expression (scm-error (quote misc-error) #f ...):
ERROR: no such module (site g-wrap)

-- 
-russ nelson <[EMAIL PROTECTED]>  http://russnelson.com
Crynwr sells support for free software  | PGPok | Government schools are so
521 Pleasant Valley Rd. | +1 315 268 1925 voice | bad that any rank amateur
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | can outdo them. Homeschool!
----- %< -------------------------------------------- >% ------
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body

Reply via email to