Missing scripts; Dependency Issues?
Hey man, cool looking project! I'm having some trouble getting it running. Below is a short summary of the problem.
Building from the Quicklisp dist appears to succeed, but scriptl's default shell commands are not in path.
Running the scripts from inside their local directory fails because scriptlcom does not exist.
Trying to manually build scriptlcom fails because aclocal-1.14 is missing. Aclocal is present, but in a higher version. I'm going to try building with a matching version. Until then, any ideas as to what's up?
Same issue here. Just update the autotools files:
$ cd ${quicklisp-install-dir}/dists/quicklisp/software/scriptl-20180228-git/src/scriptlcom/
$ automake --add-missing
$ autoreconf
After that, (ql:quickload 'scriptl) should complete without erros.
That fixed it, thanks! On a side note, did you have problems finding the MAKE-COMMAND function? It doesn't seem to exist anymore.
- [Thu, Aug 23, 2018 at 07:05:32PM -0700] good-as-soma:
That fixed it, thanks! On a side note, did you have problems finding the MAKE-COMMAND function? It doesn't seem to exist anymore.
Unfortunately the documentation seems not to be up-to-date. For what I could see, MAKE-COMMAND has been replaced by:
MAKE-SCRIPT (filename function &optional error-fun system)
It appears so. Thanks for the help!