guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/2] gnu: tzdata: Fix dangling symbolic link.


From: Ludovic Courtès
Subject: Re: [PATCH 1/2] gnu: tzdata: Fix dangling symbolic link.
Date: Thu, 06 Oct 2016 21:36:19 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

John Darrington <address@hidden> 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’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]