diff options
author | jhb <jhb@FreeBSD.org> | 2001-01-19 19:43:45 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-01-19 19:43:45 +0000 |
commit | ffbcfd67f32469a4a65f51dc15c8903aea674fa3 (patch) | |
tree | 6c482d54feb7a6c79640a984a802cb16c3c03d54 /sys/conf/Makefile.pc98 | |
parent | a7798349e0fc91852e772c1c55ade6517bb6b390 (diff) | |
download | FreeBSD-src-ffbcfd67f32469a4a65f51dc15c8903aea674fa3.zip FreeBSD-src-ffbcfd67f32469a4a65f51dc15c8903aea674fa3.tar.gz |
Change the reinstall.debug target to depend on
{kernel,modules}-reinstall.debug rather than {kernel,modules}-reinstall.
Otherwise, the '.debug' portion of the target is lost, and you end up
reinstalling the non debug version instead of the debug version.
Diffstat (limited to 'sys/conf/Makefile.pc98')
-rw-r--r-- | sys/conf/Makefile.pc98 | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 546853f..7aef2a2 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -122,8 +122,10 @@ depend: kernel-depend clean: kernel-clean cleandepend: kernel-cleandepend tags: kernel-tags -install install.debug: kernel-install -reinstall reinstall.debug: kernel-reinstall +install: kernel-install +install.debug: kernel-install.debug +reinstall: kernel-reinstall +reinstall.debug: kernel-reinstall.debug .if !defined(DEBUG) FULLKERNEL= ${KERNEL_KO} @@ -266,8 +268,10 @@ clean: modules-clean cleandepend: modules-cleandepend cleandir: modules-cleandir tags: modules-tags -install install.debug: modules-install -reinstall reinstall.debug: modules-reinstall +install: modules-install +install.debug: modules-install.debug +reinstall: modules-reinstall +reinstall.debug: modules-reinstall.debug .endif MKMODULESENV= MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR} |