From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 01:59:30 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB67C406 for ; Tue, 15 Apr 2014 01:59:30 +0000 (UTC) Received: from mail-ve0-x230.google.com (mail-ve0-x230.google.com [IPv6:2607:f8b0:400c:c01::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 893C5176B for ; Tue, 15 Apr 2014 01:59:30 +0000 (UTC) Received: by mail-ve0-f176.google.com with SMTP id db11so8251576veb.7 for ; Mon, 14 Apr 2014 18:59:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=hmm6GVHTNur7wLlvfICZ2kZv20E2PrCdpq6RlhGzeLY=; b=ECXXJcsS36Zf9bLmbRLmZlgxacW6HsqpFTdOQJmOEg+zfiwRkci/ekX0EB1Pw1NQ4L 0ulOWh0V3LPAsc8LdW8HcCOZBdJmA6TrfQFbk4qVgeTDwIcMon3IxaikVmg1Vr7hmxIb nWwTBhRgS7eosXPbxy075zdwhyp+NpeNdnCF456EUx8p5abDyyJTVRYtbyMGtMpvRWgw pR+KsnL7SRH8Hv3phYlDh6r9PcWBe2WJy9hGM9S/WPeUoH9A0NFsD5mqlfXycqpJIUyu EZatplPJEa+Ur/dIrsIyMmKcjFeWgIhZH77d6Fv8kfmqadj9hj+AXd5RirgXWPQbENwt bx8A== MIME-Version: 1.0 X-Received: by 10.220.198.197 with SMTP id ep5mr6324228vcb.21.1397527169652; Mon, 14 Apr 2014 18:59:29 -0700 (PDT) Received: by 10.220.239.84 with HTTP; Mon, 14 Apr 2014 18:59:29 -0700 (PDT) In-Reply-To: References: Date: Mon, 14 Apr 2014 21:59:29 -0400 Message-ID: Subject: Re: make installworld failed From: Thomas Hoffmann To: FreeBSD Questions Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Mike Casper X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 01:59:30 -0000 On Mon, Apr 14, 2014 at 9:16 PM, Mike Casper wrote: > I'm new to freebsd and there isn't anything important on the machine that > I'm working with. Worse case scenario is that I reinstall, but I'd like to > try and figure out issue like this before things move ahead. > > I installed ports & src with svn. Then I followed the procedures from the > Overview of Build World Process. Everything worked fine until make > installworld. > > make installworld fails with: > > Install blah blah blah > Install blah blah blah > Install -o root -g wheel -m 444 btree.3.gz /usr/share/man/man3 > Install: btree.3.gz: No such file or directory > *** Error Code 71 > > Stop. > make[5] : stopped in /usr/src/lib/libc > *** Error Code 1 > > I did a find / -name btree.3.gz, and its results are > /usr/share/man/man3/btree.3.gz. > > I coped the local file to /usr/src/lib/libc and ran make installworld > again, but received the same results. > > I haven't rebooted and I'm still in single user mode with the zvol mounted > as per the handbook procedure. > > My first question, is the -g wheel correct (is it supposed to be -g root?) > or did I incorrectly merge the /etc files with mergemaster -p? > > Secondly, can I use btree.3.gz from ../man/man3 and if so, where would I > put it to stop make installworld from failing? > This issue was caused by r264402 and fixed with r264424. Suggest you update /usr/src to >= r264424 and try again. You will need to rebuild world (make buildworld). Reference: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=10007936+0+current/svn-src-head http://docs.freebsd.org/cgi/getmsg.cgi?fetch=9972923+0+current/svn-src-head -Tom