From owner-freebsd-stable@FreeBSD.ORG Sat Mar 30 20:47:49 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C21D0351 for ; Sat, 30 Mar 2013 20:47:49 +0000 (UTC) (envelope-from freebsd-stable-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9AE11B6D for ; Sat, 30 Mar 2013 20:47:49 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id DED2C33C6E; Sat, 30 Mar 2013 16:47:43 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id ADC3D39829; Sat, 30 Mar 2013 16:47:42 -0400 (EDT) From: Lowell Gilbert To: "Edwin L. Culp W." Subject: Re: problem building world on 9.1 stable after changing 100% to svn References: <44li94vdq7.fsf@lowell-desk.lan> Date: Sat, 30 Mar 2013 16:47:42 -0400 In-Reply-To: (Edwin L. Culp W.'s message of "Sat, 30 Mar 2013 15:37:45 -0500") Message-ID: <44hajsvclt.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-stable@freebsd.org List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Mar 2013 20:47:49 -0000 "Edwin L. Culp W." writes: > On Sat, Mar 30, 2013 at 3:23 PM, Lowell Gilbert < > freebsd-stable-local@be-well.ilk.org> wrote: >> It's possible you're building with the wrong set of headers, but every >> case I can think of would have given you an error earlier than this. >> Do you get any output from: >> # cd /usr/src/usr.bin/xinstall/ && svn status xinstall.c >> by any chance? >> >> What command did you use for your initial source checkout from SubVersion? >> > > I did it twice. > > # cd /usr/src/usr.bin/xinstall/ && svn status xinstall.c > M xinstall.c > # cd /usr/src/usr.bin/xinstall/ && svn status xinstall.c > M xinstall.c > > Hopefully you will find something there. Yup, that's clearly wrong. For the moment I'll assume you did the initial checkout correctly. Or at least in some wrong way that doesn't require you to remove the whole tree and check it out again (which definitely is what you should have done the first time, by the way). I'm guessing the revert part is what you really need, but go to the /usr/src directory and try: # svn cleanup or # svn revert -R * and if you're still lost, # svn status . will tell you what is in your tree that is different from a pristine one.