From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer?=) Subject: Re: Preparing for the libc/locale upgrade Date: Thu, 01 Oct 2015 22:36:22 +0200 Message-ID: <87zj02wcl5.fsf@T420.taylan> References: <87h9mdz47r.fsf@netris.org> <1443729451.4038538.398969025.323F8CB8@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44198) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhkab-0001HZ-Ca for guix-devel@gnu.org; Thu, 01 Oct 2015 16:36:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhkaX-00053r-Be for guix-devel@gnu.org; Thu, 01 Oct 2015 16:36:29 -0400 Received: from mail-wi0-x22d.google.com ([2a00:1450:400c:c05::22d]:33683) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhkaX-00053l-3F for guix-devel@gnu.org; Thu, 01 Oct 2015 16:36:25 -0400 Received: by wiclk2 with SMTP id lk2so7450833wic.0 for ; Thu, 01 Oct 2015 13:36:24 -0700 (PDT) In-Reply-To: <1443729451.4038538.398969025.323F8CB8@webmail.messagingengine.com> (Leo Famulari's message of "Thu, 01 Oct 2015 15:57:31 -0400") 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari writes: > Just want to confirm I'm doing your workaround properly... like this? > $ ln -s gnu/store/...-glibc-utf8-locales-2.22/lib/locale > /run/current-system/locale > $ echo $LOCPATH > > The previous line is blank, showing that $LOCPATH is unset. I think that would leave you with a dangling symlink when that /gnu/store item gets garbage collected. (You also forgot the first slash.) The following might be preferable: guix package -p /run/current-system/profile -i glibc-locales ln -s profile/lib/locale /run/current-system/locale Don't know if there's an even better way. HTH, Taylan