mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
packages: 'package-field-location' really catches 'system-error.
This had been wrong since forever (i.e., 2013). * guix/packages.scm (package-field-location): Catch 'system-error, not 'system.
This commit is contained in:
parent
5fbba84696
commit
36eef80d45
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ (define (goto port line column)
|
||||||
|
|
||||||
(match (package-location package)
|
(match (package-location package)
|
||||||
(($ <location> file line column)
|
(($ <location> file line column)
|
||||||
(catch 'system
|
(catch 'system-error
|
||||||
(lambda ()
|
(lambda ()
|
||||||
;; In general we want to keep relative file names for modules.
|
;; In general we want to keep relative file names for modules.
|
||||||
(with-fluids ((%file-port-name-canonicalization 'relative))
|
(with-fluids ((%file-port-name-canonicalization 'relative))
|
||||||
|
|
Loading…
Reference in a new issue