From 1cc9fcd1c758b73cdef7e674d4a87094e2d029f8 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Mon, 16 Jan 2017 16:47:00 +0000 Subject: Extract do-patch into a separate script. PR: 215761 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D9029 --- CHANGES | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 523d9e281b9a..a8b1f76cdeba 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,20 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160116: +AUTHOR: mat@FreeBSD.org + + During extraction of the do-patch target into a separate script, the "-d + PATCH_WRKSRC" had to be removed from the PATCH_ARGS and PATCH_DIST_ARGS + variables. If using these variables directly, you will need to adapt the + Makefile. For example: + + ${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extra-patch + + needs to be changed to: + + ${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} < ${FILESDIR}/extra-patch + 20161218: AUTHOR: tcberner@FreeBSD.org -- cgit v1.2.3