Another option is some variant of
$ sudo cp xyz/file.scm `guile -c '(display
(%global-site-dir))'`/xyz/file.scm
On 7/1/22 10:15 AM, James Crake-Merani wrote:
guile -c '(display (%global-site-dir))'Hello,
I was just wondering what approach people tend to take when writing a script
which installs a module onto the load-path. I understand this path might be
different on different machines so how do you make sure the module is installed
in the right path? Would you use something like a Makefile?
Thanks.