From owner-freebsd-stable@FreeBSD.ORG Mon Jun 4 20:05:12 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE3541065674 for ; Mon, 4 Jun 2012 20:05:12 +0000 (UTC) (envelope-from freebsd-stable@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 765D98FC25 for ; Mon, 4 Jun 2012 20:05:12 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SbdWR-0002EG-Io for freebsd-stable@freebsd.org; Mon, 04 Jun 2012 22:05:03 +0200 Received: from 103.85-200-56.bkkb.no ([85.200.56.103]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Jun 2012 22:05:03 +0200 Received: from christer.solskogen by 103.85-200-56.bkkb.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Jun 2012 22:05:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-stable@freebsd.org From: Christer Solskogen Date: Mon, 04 Jun 2012 21:54:36 +0200 Lines: 17 Message-ID: References: <4FCC6DE2.6040106@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 103.85-200-56.bkkb.no User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 In-Reply-To: Subject: Re: Installworld and /usr/include/*.h modification times X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 20:05:12 -0000 On 4/6/2012 7:57 PM, Kimmo Paasiala wrote: > Thanks! I should have thought of that myself... There are few bits > under /usr/share that behave the same way but now I know how to deal > with those as well. > Be a little more careful with that. make(1) uses some of files there, and will bail out if /usr/share is missing. If you really must, do something like this: mv /usr/share /usr/share.old make -m /usr/src/share/mk hierarchy (you cant skip it, this time, I swear) make -m /usr/src/share/mk installworld -- chs