Duane Winner <duanewinner@att.net> writes:
>
> # cd orion-0.2
> # ./install.scm
> ERROR: Couldn't find library file
> "install-lib/load.scm"
> ("/usr/local/lib/scsh/modules")
>
> So I made a directory, "/usr/local/lib/scsh/modules" and then:
> #cp -rf /usr/local/lib/scsh/0.6/load.scm /usr/local/lib/scsh/modules
The library search path of your scsh is configured to
("/usr/local/lib/scsh/modules") but to support the packaging proposal,
it should contain a directory that ends with the version of scsh, i.e.
("/usr/local/lib/scsh/modules/0.6")
You should file a bug report to the maintainer of the scsh
port. scsh's configure needs the argument
--with-lib-dirs-list=("/usr/local/lib/scsh/modules/0.6")
For the time being, simply set the environment variable SCSH_LIB_DIRS
to "/usr/local/lib/scsh/modules/0.6" using
setenv SCSH_LIB_DIRS '"/usr/local/lib/scsh/modules/0.6"'
for (t)csh or
export SCSH_LIB_DIRS='"/usr/local/lib/scsh/modules/0.6"'
for bash.
--
Martin
|