mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
utils: 'current-source-directory' gracefully deals with lack of location info.
* guix/utils.scm (current-source-directory): Adjust for when 'syntax-source' returns #f.
This commit is contained in:
parent
d209ce434f
commit
82781d871f
1 changed files with 2 additions and 2 deletions
|
@ -700,7 +700,7 @@ (define-syntax current-source-directory
|
|||
be determined."
|
||||
(syntax-case s ()
|
||||
((_)
|
||||
(match (assq 'filename (syntax-source s))
|
||||
(match (assq 'filename (or (syntax-source s) '()))
|
||||
(('filename . (? string? file-name))
|
||||
;; If %FILE-PORT-NAME-CANONICALIZATION is 'relative, then FILE-NAME
|
||||
;; can be relative. In that case, we try to find out at run time
|
||||
|
@ -713,7 +713,7 @@ (define-syntax current-source-directory
|
|||
(dirname file-name))
|
||||
(else
|
||||
#`(absolute-dirname #,file-name))))
|
||||
(_
|
||||
(#f
|
||||
#f))))))
|
||||
|
||||
;; A source location.
|
||||
|
|
Loading…
Reference in a new issue