diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-06-06 02:35:41 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-06-06 02:35:41 +0000 |
commit | 4e3d4f260c9011e661b77d0a7660e9fb95b6b027 (patch) | |
tree | 9a33b274d110861494caad85063fa1638a38dfdb | |
parent | cf8271e6b3da43e654d138caf02f69d584764af5 (diff) |
correct the depend list of a target introduced in rev 1.9
from deraadt@
-rw-r--r-- | sys/arch/arm64/conf/Makefile.arm64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/conf/Makefile.arm64 b/sys/arch/arm64/conf/Makefile.arm64 index 5ff1a068b97..cd940bd47f5 100644 --- a/sys/arch/arm64/conf/Makefile.arm64 +++ b/sys/arch/arm64/conf/Makefile.arm64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.arm64,v 1.10 2017/06/05 15:58:33 deraadt Exp $ +# $OpenBSD: Makefile.arm64,v 1.11 2017/06/06 02:35:40 jsg Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -119,7 +119,7 @@ mcount.o: $S/lib/libkern/mcount.c Makefile ioconf.o: ioconf.c ${NORMAL_C} -ld.script: ${_archdir}/conf/ldscript.head ${_archdir}/conf/ldscript.tail +ld.script: ${_archdir}/conf/kern.ldscript cat ${_archdir}/conf/kern.ldscript | \ sed -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \ -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' > ld.script |