DragonFly BSD
DragonFly bugs List (threaded) for 2006-11
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: fdisk problem in installworld


From: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 10 Nov 2006 09:17:31 -0800 (PST)

:
:With MACHINE set to pc32, installworld won't install fdisk (which is in 
:sbin/i386). Should fdisk be moved to sbin/pc32?
:
:Sascha
:
:-- 
:http://yoyodyne.ath.cx

    We could do that, or we could adjust /usr/src/sbin/Makefile to *ALSO*
    check for a MACHINE_ARCH subdirectory and push into that too:

    .if exists(${.CURDIR}/${MACHINE})
    SUBDIR+= ${MACHINE}
    .endif
    .if exists(${.CURDIR}/${MACHINE_ARCH})	<<<< ADDME
    SUBDIR+= ${MACHINE_ARCH}			<<<< ADDME
    .endif					<<<< ADDME

    Which I think might be the correct solution here.

					-Matt
					Matthew Dillon 
					<dillon@xxxxxxxxxxxxx>



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]