ScriptL icon indicating copy to clipboard operation
ScriptL copied to clipboard

Missing scripts; Dependency Issues?

Open ramenbytes opened this issue 7 years ago • 4 comments

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?

ramenbytes avatar Apr 09 '18 06:04 ramenbytes

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.

oreipg avatar Aug 23 '18 11:08 oreipg

That fixed it, thanks! On a side note, did you have problems finding the MAKE-COMMAND function? It doesn't seem to exist anymore.

ramenbytes avatar Aug 24 '18 02:08 ramenbytes

  • [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)

oreipg avatar Aug 24 '18 06:08 oreipg

It appears so. Thanks for the help!

ramenbytes avatar Sep 02 '18 03:09 ramenbytes