Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 May 1999 23:51:32 -0400 (EDT)
From:      "John W. DeBoskey" <jwd@unx.sas.com>
To:        jkh@zippy.cdrom.com
Cc:        freebsd-current@freebsd.org
Subject:   /usr/src/release/Makefile patch
Message-ID:  <199905120351.XAA24516@bb01f39.unx.sas.com>

next in thread | raw e-mail | index | archive | help
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 majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199905120351.XAA24516>