John Darrington <j...@gnu.org> skribis: > * gnu/packages/base.scm (tzdata)[arguments]: Replace dangling symbolic link > with the correct path. > --- > gnu/packages/base.scm | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm > index a476837..52d8de3 100644 > --- a/gnu/packages/base.scm > +++ b/gnu/packages/base.scm > @@ -946,11 +946,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"))
Or even: (symlink "." (string-append out "/share/zoneinfo/posix")) OK for core-updates, thanks! Ludo’.