From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 1/2] gnu: tzdata: Fix dangling symbolic link. Date: Thu, 06 Oct 2016 21:36:19 +0200 Message-ID: <87twcpi824.fsf@gnu.org> References: <1475777887-6628-1-git-send-email-jmd@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsESy-0006Nv-Hy for guix-devel@gnu.org; Thu, 06 Oct 2016 15:36:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsESt-0003nx-SB for guix-devel@gnu.org; Thu, 06 Oct 2016 15:36:28 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:59872) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsESt-0003nC-Oe for guix-devel@gnu.org; Thu, 06 Oct 2016 15:36:23 -0400 In-Reply-To: <1475777887-6628-1-git-send-email-jmd@gnu.org> (John Darrington's message of "Thu, 6 Oct 2016 20:18:06 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: John Darrington Cc: guix-devel@gnu.org John Darrington skribis: > * gnu/packages/base.scm (tzdata)[arguments]: Replace dangling symbolic li= nk > 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=E2=80=99.