gnu: tzdata: Fix dangling symbolic link.
* gnu/packages/base.scm (tzdata)[arguments]: Replace dangling symbolic link with the correct path.master
parent
1d8de185b8
commit
12b85b3787
|
@ -960,11 +960,11 @@ command.")
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Move data in the right place.
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(copy-recursively (string-append out "/share/zoneinfo-posix")
|
||||
(string-append out "/share/zoneinfo/posix"))
|
||||
(symlink (string-append out "/share/zoneinfo")
|
||||
(string-append out "/share/zoneinfo/posix"))
|
||||
(delete-file-recursively (string-append out "/share/zoneinfo-posix"))
|
||||
(copy-recursively (string-append out "/share/zoneinfo-leaps")
|
||||
(string-append out "/share/zoneinfo/right"))
|
||||
(delete-file-recursively (string-append out "/share/zoneinfo-posix"))
|
||||
(delete-file-recursively (string-append out "/share/zoneinfo-leaps"))))
|
||||
(alist-delete 'configure %standard-phases)))))
|
||||
(inputs `(("tzcode" ,(origin
|
||||
|
|
Reference in New Issue