diff options
author | grog <grog@FreeBSD.org> | 1999-04-11 03:40:11 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-04-11 03:40:11 +0000 |
commit | a6f7cebb1b69be63e66d120173f9a8b4960e6986 (patch) | |
tree | d1b89928b1639b0e54736f64cac04e2ec73e3601 /sys/pc98 | |
parent | 57c8b4d2e5800801bec90763b2aa9ed55656d8c2 (diff) | |
download | FreeBSD-src-a6f7cebb1b69be63e66d120173f9a8b4960e6986.zip FreeBSD-src-a6f7cebb1b69be63e66d120173f9a8b4960e6986.tar.gz |
Back out default debug kernel. The flags revert to historical behaviour.
Requested-by: ache
bde
dg
Modify targets for debug kernels: when -g was specified, make will
now build a debug kernel called kernel.debug, and create a stripped
version called kernel at the same time. The two targets install and
install.debug are otherwise unchanged.
Requested-by: dillon
Update man page accordingly.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/conf/Makefile.pc98 | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/pc98/conf/Makefile.pc98 b/sys/pc98/conf/Makefile.pc98 index a90547d..f9c6717 100644 --- a/sys/pc98/conf/Makefile.pc98 +++ b/sys/pc98/conf/Makefile.pc98 @@ -3,7 +3,7 @@ # Makefile.i386 -- with config changes. # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.pc98,v 1.57 1999/03/13 13:18:00 kato Exp $ +# $Id: Makefile.pc98,v 1.58 1999/04/07 09:28:03 grog Exp $ # # Makefile for FreeBSD # @@ -233,13 +233,10 @@ install: ${KERNEL} fi install -c -m 555 -o root -g wheel -fschg ${KERNEL} ${DESTDIR}/ -${KERNEL}: ${KERNEL}.debug - objcopy --strip-debug ${KERNEL}.debug ${KERNEL} - .endif ${INSTALL}: - @if [ ! -f ${FULLKERNEL} ] ; then \ + @if [ ! -f ${KERNEL} ] ; then \ echo "You must first build your kernel before trying to install." ; \ exit 1 ; \ fi |