diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2017-06-05 09:44:57 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2017-06-05 09:44:57 +0000 |
commit | f15ac4e40df555165c0917dedbfc21ca18ef1749 (patch) | |
tree | 2b16b4ebf8a1d5aebf1e38711d5f330da2828aeb /distrib/syspatch | |
parent | 27d98d3ae7dbfbb975e05eeb2ee5657af2c9da3d (diff) |
do not add ./ to the path of the files in the tarball
Diffstat (limited to 'distrib/syspatch')
-rw-r--r-- | distrib/syspatch/bsd.syspatch.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/syspatch/bsd.syspatch.mk b/distrib/syspatch/bsd.syspatch.mk index 9b2dbe9487e..3f26594309a 100644 --- a/distrib/syspatch/bsd.syspatch.mk +++ b/distrib/syspatch/bsd.syspatch.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.syspatch.mk,v 1.8 2017/04/22 13:39:00 robert Exp $ +# $OpenBSD: bsd.syspatch.mk,v 1.9 2017/06/05 09:44:56 robert Exp $ # # Copyright (c) 2016-2017 Robert Nagy <robert@openbsd.org> # @@ -190,6 +190,6 @@ ${ERRATA}/.plist: ${_BUILD_COOKIE} @su ${BUILDUSER} -c 'echo ${SYSPATCH_DIR}/${ERRATA}.patch.sig >> ${.OBJDIR}/${ERRATA}/.plist' || \ { echo "***> unable to add syspatch to list of files"; \ exit 1; }; - @su ${BUILDUSER} -c 'sed -i "s,^${FAKEROOT}/syspatch/${OSrev}-[^/]*/,./,g" ${.TARGET}' + @su ${BUILDUSER} -c 'sed -i "s,^${FAKEROOT}/syspatch/${OSrev}-[^/]*/,,g" ${.TARGET}' .include <bsd.obj.mk> |