From owner-freebsd-current@FreeBSD.ORG Tue Jan 22 16:02:39 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 94ACD3EC; Tue, 22 Jan 2013 16:02:39 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (lor.one-eyed-alien.net [69.66.77.232]) by mx1.freebsd.org (Postfix) with ESMTP id E12BCF6C; Tue, 22 Jan 2013 16:02:38 +0000 (UTC) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.5/8.14.5) with ESMTP id r0MG2dNJ001096; Tue, 22 Jan 2013 10:02:39 -0600 (CST) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.5/8.14.5/Submit) id r0MG2dMn001095; Tue, 22 Jan 2013 10:02:39 -0600 (CST) (envelope-from brooks) Date: Tue, 22 Jan 2013 10:02:39 -0600 From: Brooks Davis To: Ryan Stone Subject: Re: installworld fails Message-ID: <20130122160239.GB794@lor.one-eyed-alien.net> References: <18A556A4-5B93-49B3-88B3-BD955394EA2A@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: AN , Jason Evans , FreeBSD Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 22 Jan 2013 16:02:39 -0000 On Tue, Jan 22, 2013 at 08:49:12AM -0500, Ryan Stone wrote: > On Tue, Jan 22, 2013 at 1:24 AM, Jason Evans wrote: >=20 > > On Jan 21, 2013, at 10:13 PM, AN wrote: > > > FreeBSD FBSD10 10.0-CURRENT FreeBSD 10.0-CURRENT #29 r245766: Tue Jan= 22 > > 00:49:02 EST 2013 root@FBSD10:/usr/obj/usr/src/sys/MYKERNEL amd64 > > > > > > Is anyone seeing this? > > > > > > install -l s usr/src/sys /sys > > > install: /sys/sys: Directory not empty > > > *** [distrib-dirs] Error code 71 > > > > Yes. I haven't tracked down the cause, but doing 'rm /sys' prior to > > installworld is an effective workaround. > > > > Jason > > > > > CC'ing Brooks, who I believe made this change. >=20 > It looks as though install is using the semantics of ln -s /usr/src/sys > /sys instead of ln -fs. Sorry about this breakage I'm testing a fix now. The problem is actually that install implemented the behavior of ln -sf and not ln -sfh. -- Brooks