svn commit: r209228 - head/etc

Andriy Gapon avg at FreeBSD.org
Wed Jun 16 07:52:45 UTC 2010


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
  
  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}/


More information about the svn-src-all mailing list