mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-15 17:30:37 -07:00
Provide a sane default for the "TMP" pathname host on UNIX.
This commit is contained in:
parent
6661ef033b
commit
bc74ead74f
1 changed files with 1 additions and 1 deletions
|
|
@ -121,6 +121,6 @@ Returns, as a string, the version of the software under which ECL runs."
|
|||
(probe-file x)))
|
||||
((and (setf x (ext:getenv "TMP"))
|
||||
(probe-file x)))
|
||||
(t (setf x "./")))
|
||||
(t (setf x #+unix "/tmp" #-unix "./")))
|
||||
(si::pathname-translations "TMP"
|
||||
`(("**;*.*" ,(format nil "~A/**/*.*" x)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue