diff options
author | 2018-03-19 17:27:03 +0000 | |
---|---|---|
committer | 2018-03-19 17:27:03 +0000 | |
commit | 5ff18317c4054d200bdc764f260fa114bd959e6f (patch) | |
tree | 28fb71ccd82c59ed1a2a424009a26b9d18daee6f | |
parent | Use a table that is automatically generated from data extracted from the (diff) | |
download | wireguard-openbsd-5ff18317c4054d200bdc764f260fa114bd959e6f.tar.xz wireguard-openbsd-5ff18317c4054d200bdc764f260fa114bd959e6f.zip |
use the correct relink directory path
-rw-r--r-- | distrib/syspatch/bsd.syspatch.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/syspatch/bsd.syspatch.mk b/distrib/syspatch/bsd.syspatch.mk index f88120ce4b9..3432c99fdcb 100644 --- a/distrib/syspatch/bsd.syspatch.mk +++ b/distrib/syspatch/bsd.syspatch.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.syspatch.mk,v 1.19 2017/10/17 19:31:56 naddy Exp $ +# $OpenBSD: bsd.syspatch.mk,v 1.20 2018/03/19 17:27:03 robert Exp $ # # Copyright (c) 2016-2017 Robert Nagy <robert@openbsd.org> # @@ -164,14 +164,14 @@ ${_BUILD_COOKIE}: ${_PATCH_COOKIE} ${_FAKE_COOKIE} su ${BUILDUSER} -c 'umask ${WOBJUMASK} && \ cd ${SRCDIR}/sys/arch/${MACHINE_ARCH}/compile/GENERIC/obj && \ cp -p *.o Makefile ld.script makegap.sh \ - ${FAKE}/usr/share/compile/GENERIC/' || \ + ${FAKE}/usr/share/relink/kernel/GENERIC/' || \ { echo "***> failed to install ${_kern} object files"; \ exit 1; }; \ elif [ ${_kern} = "GENERIC.MP" ]; then \ su ${BUILDUSER} -c 'umask ${WOBJUMASK} && \ cd ${SRCDIR}/sys/arch/${MACHINE_ARCH}/compile/GENERIC.MP/obj && \ cp -p *.o Makefile ld.script makegap.sh \ - ${FAKE}/usr/share/compile/GENERIC.MP/' || \ + ${FAKE}/usr/share/relink/kernel/GENERIC.MP/' || \ { echo "***> failed to install ${_kern} object files"; \ exit 1; }; \ fi; exit 0 |