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
|
@ -351,7 +351,7 @@ object."
|
||||||
|
|
||||||
(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 New Issue