diff options
author | mat <mat@FreeBSD.org> | 2018-09-10 21:11:23 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-09-10 21:11:23 +0800 |
commit | c6f82ca14271d2d9433ac4938a2188b9b6d092c1 (patch) | |
tree | b47b12c2614f4db455f6a6733adce11a1cbba4b5 /japanese | |
parent | b5f636d426adfd976e881a414696f678f16edcb8 (diff) | |
download | freebsd-ports-gnome-c6f82ca14271d2d9433ac4938a2188b9b6d092c1.tar.gz freebsd-ports-gnome-c6f82ca14271d2d9433ac4938a2188b9b6d092c1.tar.zst freebsd-ports-gnome-c6f82ca14271d2d9433ac4938a2188b9b6d092c1.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 'japanese')
-rw-r--r-- | japanese/skkinput3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/skkinput3/Makefile b/japanese/skkinput3/Makefile index 0adb02bd6854..1c978e8e4759 100644 --- a/japanese/skkinput3/Makefile +++ b/japanese/skkinput3/Makefile @@ -31,9 +31,9 @@ SKK10_DESC= Install SKK10 elisp files .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MSKK10} -PLIST_SUB= SKK8="@comment " SKK10="" +PLIST_SUB+= SKK8="@comment " SKK10="" .else -PLIST_SUB= SKK8="" SKK10="@comment " +PLIST_SUB+= SKK8="" SKK10="@comment " .endif .if ${PORT_OPTIONS:MDBSKKD} |