From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 01:16:44 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 D0E259D3 for ; Tue, 15 Apr 2014 01:16:44 +0000 (UTC) Received: from mail-wg0-x22c.google.com (mail-wg0-x22c.google.com [IPv6:2a00:1450:400c:c00::22c]) (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 6B8B813B2 for ; Tue, 15 Apr 2014 01:16:44 +0000 (UTC) Received: by mail-wg0-f44.google.com with SMTP id m15so8922766wgh.27 for ; Mon, 14 Apr 2014 18:16:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=eiFu3JfqhP1iKZ9IgHY9EZnF+aUHwHzxDv6kaGilNWo=; b=Qbd3qVKzWkV0p+J1JDBCX51J18or4erBM3E9/4btLaPZCBUwMi9S3507TQjq9QfPiB RWEOHSZR/LcfF+MFUV7YKfuwwK3O9SGAtKfyySGYnKUA0e+L722yzBVPIWRceAot603m cOMQblBD55pxLfitHm/3htQGTNlFcygH84TllngcmaT2zSk+5oe9X4z6MO7LHHE32YGm jTK7OuTa0AJ8nbjGYxFliZodiV5CbUYsADvUzNVHA8fhijEN5/7FcfCueqJnxgrybJ3I Pl8WZiqlGCJtAunrP/tZ+u2EijhhPEXR5p9dhBFTcEeiorWuHKaIEItyR6KDhxinU3gL TrhQ== MIME-Version: 1.0 X-Received: by 10.180.207.10 with SMTP id ls10mr11926887wic.22.1397524601726; Mon, 14 Apr 2014 18:16:41 -0700 (PDT) Received: by 10.217.127.199 with HTTP; Mon, 14 Apr 2014 18:16:41 -0700 (PDT) Date: Mon, 14 Apr 2014 20:16:41 -0500 Message-ID: Subject: make installworld failed From: Mike Casper To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 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:16:45 -0000 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?