From owner-freebsd-current@freebsd.org Mon Nov 16 02:27:21 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3584A2F4F1 for ; Mon, 16 Nov 2015 02:27:21 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: from mail-yk0-x22c.google.com (mail-yk0-x22c.google.com [IPv6:2607:f8b0:4002:c07::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A1ABD191D for ; Mon, 16 Nov 2015 02:27:21 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: by ykdr82 with SMTP id r82so217492034ykd.3 for ; Sun, 15 Nov 2015 18:27:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=bkK+oS230dlAZKe09FY6NptdwQXOH9bPPDuRezxWhG8=; b=GDA6JgobmREv6TnsFg94d5NlK6Askt43o4BSXJKzuBuJIVzu1fPBBuVL0y0stSdX8t cCivB1Bur3ae74cYIHIzCQtRxFxd+j8/+97y8iA0/jbOVwFX1y0pFldu4STqkMsDB6ZW 1AjtWLd8OZgGALWE1+cRE3fT3727kWIiIzsi7AEDiUGltr77mS0dHNMf777Kh+a6X5HA AsNkIW6WlMO9AjYA8fehpbahqJpYSOmGEdGcTUZwEizPJ9od/u7WjXAr9qIUPseKfCvw ReQcFAc8q4HkZQ472dtAcxyQ7EeN+/hOL30sZyGDP0LACD+KZ0+51LMtLf93hmD/XRFP jeXw== MIME-Version: 1.0 X-Received: by 10.13.196.193 with SMTP id g184mr32586814ywd.293.1447640840739; Sun, 15 Nov 2015 18:27:20 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.37.95.9 with HTTP; Sun, 15 Nov 2015 18:27:20 -0800 (PST) In-Reply-To: References: <94D9C31A-2FDF-4B5C-99AE-847FED0DE859@gmail.com> Date: Sun, 15 Nov 2015 18:27:20 -0800 X-Google-Sender-Auth: xcv6GgCVZG9MWhjOwV0ScW_VPL4 Message-ID: Subject: Re: make installworld failing with locales due to broken symlinks From: Craig Rodrigues To: freebsd-current Current Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2015 02:27:22 -0000 On Sun, Nov 15, 2015 at 5:57 PM, NGie Cooper wrote: > $ ls `readlink -f /usr/share/locale/ca_IT.ISO8859-1/LC_CTYPE` > ls: /usr/share/locale/la_LN.ISO8859-1: No such file or directory > I built the latest world, and then did the following: rm -fr /tmp/testdir mkdir /tmp/testdir make installworld DESTDIR=/tmp/testdir cd /tmp/testdir/usr/share/locale for f in $(find . -type l) ; do [ ! -e $f ] && echo "$f does not exist"; done ./zh_CN.GB2312/LC_NUMERIC does not exist ./zh_CN.GB2312/LC_MONETARY does not exist ./zh_CN.GB2312/LC_COLLATE does not exist ./zh_CN.GB2312/LC_CTYPE does not exist ./zh_CN.GB2312/LC_MESSAGES does not exist ./zh_CN.GB2312/LC_TIME does not exist ./zh_CN.eucCN/LC_MESSAGES does not exist ./zh_CN.eucCN/LC_NUMERIC does not exist ./zh_CN.eucCN/LC_TIME does not exist ./zh_CN.eucCN/LC_CTYPE does not exist ./zh_CN.eucCN/LC_MONETARY does not exist ./zh_CN.eucCN/LC_COLLATE does not exist ./zh_HK.UTF-8/LC_NUMERIC does not exist ./zh_HK.UTF-8/LC_MONETARY does not exist ./zh_HK.UTF-8/LC_COLLATE does not exist ./zh_HK.UTF-8/LC_MESSAGES does not exist ./zh_HK.UTF-8/LC_TIME does not exist ./zh_HK.UTF-8/LC_CTYPE does not exist ./zh_CN.GBK/LC_CTYPE does not exist ./zh_CN.GBK/LC_NUMERIC does not exist ./zh_CN.GBK/LC_MESSAGES does not exist ./zh_CN.GBK/LC_COLLATE does not exist ./zh_CN.GBK/LC_MONETARY does not exist ./zh_CN.GBK/LC_TIME does not exist ./zh_CN.GB18030/LC_COLLATE does not exist ./zh_CN.GB18030/LC_MESSAGES does not exist ./zh_CN.GB18030/LC_CTYPE does not exist ./zh_CN.GB18030/LC_TIME does not exist ./zh_CN.GB18030/LC_NUMERIC does not exist ./zh_CN.GB18030/LC_MONETARY does not exist ./zh_TW.UTF-8/LC_MESSAGES does not exist ./zh_TW.UTF-8/LC_NUMERIC does not exist ./zh_TW.UTF-8/LC_MONETARY does not exist ./zh_TW.UTF-8/LC_TIME does not exist ./zh_TW.UTF-8/LC_CTYPE does not exist ./zh_TW.UTF-8/LC_COLLATE does not exist ./zh_HK.Big5HKSCS/LC_MONETARY does not exist ./zh_HK.Big5HKSCS/LC_NUMERIC does not exist ./zh_HK.Big5HKSCS/LC_CTYPE does not exist ./zh_HK.Big5HKSCS/LC_TIME does not exist ./zh_HK.Big5HKSCS/LC_COLLATE does not exist ./zh_HK.Big5HKSCS/LC_MESSAGES does not exist ./zh_TW.Big5/LC_MONETARY does not exist ./zh_TW.Big5/LC_CTYPE does not exist ./zh_TW.Big5/LC_TIME does not exist ./zh_TW.Big5/LC_NUMERIC does not exist ./zh_TW.Big5/LC_MESSAGES does not exist ./zh_TW.Big5/LC_COLLATE does not exist -- Craig