Hi, Could you please consider the following patch to /usr/src/release/Makefile? It may not be entirely correct, but it allows a 'cd /usr/src/release && make release' to run to completion. In the kernel makefile, 'kernel' is not a target, ${KERNEL} is, and ${KERNEL} has the value 'GENERIC'.
Comments welcome! Thanks! John # $Id: Makefile,v 1.482 1999/05/09 17:00:04 obrien Exp $ --- /snap/release/usr/src/release/Makefile~ Tue May 11 23:50:52 1999 +++ /snap/release/usr/src/release/Makefile Tue May 11 23:43:49 1999 @@ -634,9 +634,9 @@ @rm -f ${RD}/kernels/${KERNEL} @cd ${.CURDIR}/../sys/${MACHINE_ARCH}/conf && config ${KERNEL} @cd ${.CURDIR}/../sys/compile/${KERNEL} && \ - make depend && \ - make kernel && \ - cp kernel ${RD}/kernels/${KERNEL} + make depend && pwd && \ + make ${KERNEL} && \ + cp ${KERNEL} ${RD}/kernels/${KERNEL} # # --==## Put a filesystem into a BOOTMFS kernel ##==-- To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message