:
: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
<[EMAIL PROTECTED]>