summaryrefslogtreecommitdiff
path: root/distrib/syspatch
diff options
context:
space:
mode:
authorRobert Nagy <robert@cvs.openbsd.org>2018-03-19 17:27:04 +0000
committerRobert Nagy <robert@cvs.openbsd.org>2018-03-19 17:27:04 +0000
commit9bb11d7b36dd60d4fd31823a7dc6c553c772a25a (patch)
treed6cc29401f7fc6b115e803e0ee4629d3281ec68b /distrib/syspatch
parentae4af945fff76e9e444d7e2632e784e392c23f6a (diff)
use the correct relink directory path
Diffstat (limited to 'distrib/syspatch')
-rw-r--r--distrib/syspatch/bsd.syspatch.mk6
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