From owner-svn-src-all@FreeBSD.ORG Wed Jun 16 08:08:31 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB34F1065672; Wed, 16 Jun 2010 08:08:31 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id B33758FC15; Wed, 16 Jun 2010 08:08:30 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id LAA18262; Wed, 16 Jun 2010 11:08:29 +0300 (EEST) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1OOnfg-000GAv-TX; Wed, 16 Jun 2010 11:08:28 +0300 Message-ID: <4C18867C.7010700@freebsd.org> Date: Wed, 16 Jun 2010 11:08:28 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.24 (X11/20100603) MIME-Version: 1.0 To: src-committers@freebsd.org References: <201006160752.o5G7qjPB035961@svn.freebsd.org> In-Reply-To: <201006160752.o5G7qjPB035961@svn.freebsd.org> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r209228 - head/etc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jun 2010 08:08:32 -0000 on 16/06/2010 10:52 Andriy Gapon said the following: > Author: avg > Date: Wed Jun 16 07:52:44 2010 > New Revision: 209228 > URL: http://svn.freebsd.org/changeset/base/209228 > > Log: > device.hints: do install when WITHOUT_BOOT is set Oh, this should have been "do NOT install". > Discussed with: imp > MFC after: 2 weeks > > Modified: > head/etc/Makefile > > Modified: head/etc/Makefile > ============================================================================== > --- head/etc/Makefile Wed Jun 16 02:50:16 2010 (r209227) > +++ head/etc/Makefile Wed Jun 16 07:52:44 2010 (r209228) > @@ -253,11 +253,13 @@ distribution: > ${DESTDIR}/var/crash > cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ > ${FREEBSD} ${DESTDIR}/ > +.if ${MK_BOOT} != "no" > .if exists(${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints) > ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \ > ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \ > ${DESTDIR}/boot/device.hints > .endif > +.endif > > distrib-dirs: > mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/ -- Andriy Gapon