On Mon, Jan 28, 2019 at 2:02 PM Jeremy Korwin <[email protected]> wrote: > > Hi Guilers ! > > I am trying to install Haunt (https://dthompson.us/projects/haunt.html) > to try some static site generator in Guile. > > I have the current problem during the make step : > > $ make > Making all in example > make[1] : on entre dans le répertoire > « /home/jeko/Workspace/haunt/example » > make[1]: rien à faire pour « all ». > make[1] : on quitte le répertoire > « /home/jeko/Workspace/haunt/example » > Making all in website > make[1] : on entre dans le répertoire > « /home/jeko/Workspace/haunt/website » > make[1]: rien à faire pour « all ». > make[1] : on quitte le répertoire > « /home/jeko/Workspace/haunt/website » > make[1] : on entre dans le répertoire « /home/jeko/Workspace/haunt » > GEN haunt/config.go > ./pre-inst-env: 31: exec: compile: not found > Makefile:1560: recipe for target 'haunt/config.go' failed > make[1]: *** [haunt/config.go] Error 127 > make[1] : on quitte le répertoire « /home/jeko/Workspace/haunt » > Makefile:887: recipe for target 'all-recursive' failed > make: *** [all-recursive] Error 1 > > On my system I have installed the following package using apt-get : > guile-2.2, guile-2.2-dev, guile-2.2-doc, guile-2.2-libs > > I don't see what else I should install to build the module. > > Dave (Haunt's author) told me it happens because GUILE_TOOLS is not > set... If it can help for the reflexion here. > > Thank in advance to ones who would take time to help my in my case. >
I think this is again related to the guile.m4 issues. See: https://lists.gnu.org/archive/html/guile-user/2019-01/msg00058.html You can easily modify Haunt configure.ac to include the fixed guile.m4 that will work in Ubuntu. Add AC_CONFIG_MACRO_DIRS([m4]) and copy the new guile.m4 in the m4 directory: https://github.com/aconchillo/guile-redis/blob/master/m4/guile.m4 Hope this helps, Aleix
