aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2017-01-17 00:47:00 +0800
committermat <mat@FreeBSD.org>2017-01-17 00:47:00 +0800
commita910cc17afab15cfc4090a2681968937a99ddcfa (patch)
tree3b8ea3a783597953a4328bd04ea5a6b9b48b5db6 /CHANGES
parent9bf7d5a787467dacc8f0c2c2fd1cc2be3fa69e06 (diff)
downloadfreebsd-ports-gnome-a910cc17afab15cfc4090a2681968937a99ddcfa.tar.gz
freebsd-ports-gnome-a910cc17afab15cfc4090a2681968937a99ddcfa.tar.zst
freebsd-ports-gnome-a910cc17afab15cfc4090a2681968937a99ddcfa.zip
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
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES14
1 files changed, 14 insertions, 0 deletions
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