fdisk problem in installworld
Matthew Dillon
dillon at apollo.backplane.com
Fri Nov 10 09:20:47 PST 2006
:
: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 at xxxxxxxxxxxxx>
More information about the Bugs
mailing list