diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2017-07-18 16:43:28 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2017-07-18 16:43:28 +0000 |
commit | 173f1a18d177b467033209e42cb342817ccd80fa (patch) | |
tree | 246449f3ae26f2b343f009dacc3eb43e81df3463 /sys/arch/socppc | |
parent | 54ab0cf8f2c35d6b32eba5c56d8a45c3c35d26dc (diff) |
Stop automatically regenerating gap.o (and hence linking a new kernel)
whenever make is issued. Only do this when there are actual source changes
below /sys. This restores the behavior prior to the KARL implementation.
Problem noticed and patiently explained by mpi
implementation with a lot of help from espie
ok mpi, espie, deraadt
Diffstat (limited to 'sys/arch/socppc')
-rw-r--r-- | sys/arch/socppc/conf/Makefile.socppc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/socppc/conf/Makefile.socppc b/sys/arch/socppc/conf/Makefile.socppc index db46fd816ab..a3f2b6a25b8 100644 --- a/sys/arch/socppc/conf/Makefile.socppc +++ b/sys/arch/socppc/conf/Makefile.socppc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.socppc,v 1.54 2017/06/29 16:51:35 espie Exp $ +# $OpenBSD: Makefile.socppc,v 1.55 2017/07/18 16:43:27 tb Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -149,7 +149,7 @@ install-kernel-${MACHINE_NAME}: ${SYSTEM_OBJ}: ${DB_STRUCTINFO} .endif .ifnmake clean -. for o in ${SYSTEM_OBJ} assym.h ${DB_STRUCTINFO} +. for o in ${SYSTEM_OBJ:Ngap.o} assym.h ${DB_STRUCTINFO} . if exists(${o:R}.d) . include "${o:R}.d" . elif exists($o) |