mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-05 04:06:36 +02:00
Switch some string-appends to make-paths
This commit is contained in:
parent
af5dd96347
commit
ca35369186
1 changed files with 3 additions and 4 deletions
|
@ -1400,15 +1400,14 @@
|
|||
"/usr/local/share/guile/"))))
|
||||
((mosh)
|
||||
(with-output-to-file
|
||||
(string-append (cond-expand (windows (get-environment-variable "TMP"))
|
||||
(make-path (cond-expand (windows (get-environment-variable "TMP"))
|
||||
(else "/tmp"))
|
||||
"/snowmosh")
|
||||
"snowmosh")
|
||||
(lambda ()
|
||||
(display "(import (scheme base) (scheme write) (mosh config))")
|
||||
(newline)
|
||||
(display "(display (get-config \"library-path\"))")))
|
||||
(list (string-append (symbol->string (process->sexp '(mosh /tmp/snowmosh)))
|
||||
"/lib")))
|
||||
(list (make-path (process->sexp '(mosh /tmp/snowmosh)) "lib")))
|
||||
((larceny)
|
||||
(list
|
||||
(make-path
|
||||
|
|
Loading…
Add table
Reference in a new issue