From owner-freebsd-current@freebsd.org Mon Nov 16 03:16:00 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 30F2CA3005D for ; Mon, 16 Nov 2015 03:16:00 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x22a.google.com (mail-pa0-x22a.google.com [IPv6:2607:f8b0:400e:c03::22a]) (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 E99CC14E5; Mon, 16 Nov 2015 03:15:59 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pabfh17 with SMTP id fh17so161786776pab.0; Sun, 15 Nov 2015 19:15:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=blT7tMshtIoc+bO4e/SfPGHaERR2jhuHPgCKPoSGX5A=; b=QF+S2sbfb+yetf7oNXRfKOZQV4qx8GfIM/hSovnxzFnGaHZ3psyc0Km23elHFzEYIK Fj1uVh1IRN3nkdlkB2euoF9Fqmj20Aqi0rcYssunT3LqqSA+Wds+2NeCY5KKICv/pZ6g HRJIQoOVZgKoYd28wMKztp8mk+1phy0bGpiXc029eRTclThR3/Kf7vcn56FUmeRjLMtv BeqmOF3LlxEGmD4YO8VF528xjkzmTtFEXml3MFx8ItwgEz178qvjZ+jmOU4F5xtrgRNw +p/vZDFT6Ns8vf/nK60MCbKD7hgRQBz80UgIGxLWGBK8WG4czFTcNkEhDrZoK4Nl8kGO 0Bhg== X-Received: by 10.68.65.8 with SMTP id t8mr47463081pbs.99.1447643759442; Sun, 15 Nov 2015 19:15:59 -0800 (PST) Received: from ?IPv6:2601:601:800:126d:fd52:9a90:172f:f1ee? ([2601:601:800:126d:fd52:9a90:172f:f1ee]) by smtp.gmail.com with ESMTPSA id bd2sm5632506pbb.25.2015.11.15.19.15.57 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 15 Nov 2015 19:15:58 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: make installworld failing with locales due to broken symlinks From: NGie Cooper In-Reply-To: Date: Sun, 15 Nov 2015 19:15:56 -0800 Cc: freebsd-current Current , Bryan Drewery , Baptiste Daroussin Content-Transfer-Encoding: 7bit Message-Id: References: <94D9C31A-2FDF-4B5C-99AE-847FED0DE859@gmail.com> To: Craig Rodrigues X-Mailer: Apple Mail (2.2104) 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 03:16:00 -0000 > On Nov 15, 2015, at 19:08, Craig Rodrigues wrote: > > On Sun, Nov 15, 2015 at 6:27 PM, Craig Rodrigues > wrote: > >> 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 >> >> > > > This fixed it for me: > > Index: Makefile > =================================================================== > --- Makefile (revision 290902) > +++ Makefile (working copy) > @@ -15,7 +15,7 @@ > > .for from to in ${ALIASES} > .for f in ${LC_FILES} > -SYMLINKS+= ${from}/${f} ${LOCALEDIR}/${to}/${f} > +SYMLINKS+= ../${from}/${f} ${LOCALEDIR}/${to}/${f} > .endfor > .endfor LGTM