aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2018-09-10 21:11:23 +0800
committerMathieu Arnold <mat@FreeBSD.org>2018-09-10 21:11:23 +0800
commitf57bc4af665126de839ff734a08e57726e84da84 (patch)
treeb47b12c2614f4db455f6a6733adce11a1cbba4b5 /sysutils
parentce4f70264ae0d02f294cd43745a43b45a8eb4a15 (diff)
downloadfreebsd-ports-gnome-f57bc4af665126de839ff734a08e57726e84da84.tar.gz
freebsd-ports-gnome-f57bc4af665126de839ff734a08e57726e84da84.tar.zst
freebsd-ports-gnome-f57bc4af665126de839ff734a08e57726e84da84.zip
After an include, PLIST_SUB must be appended to, not overwritten.
If it is overwritten, many values will be clobbered, and pain will ensue. PR: 230864 Submitted by: mat exp-runs by: antoine
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/xcdroast/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/xcdroast/Makefile b/sysutils/xcdroast/Makefile
index c778fed06ce5..32228e8de498 100644
--- a/sysutils/xcdroast/Makefile
+++ b/sysutils/xcdroast/Makefile
@@ -34,9 +34,9 @@ CONFIGURE_ARGS= --with-cdrtools-prefix=${LOCALBASE} \
.if ${PORT_OPTIONS:MNLS}
CONFIGURE_ARGS+=--disable-nls
-PLIST_SUB= NLS="@comment "
+PLIST_SUB+= NLS="@comment "
.else
-PLIST_SUB= NLS=""
+PLIST_SUB+= NLS=""
.endif
.if ${PORT_OPTIONS:MGTK2}