aboutsummaryrefslogtreecommitdiff
path: root/korean
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2021-08-09 06:36:51 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2021-08-09 06:39:07 +0000
commitc82d9248b0e4473ab24749d294f56e3a571a9dcc (patch)
tree48017f963e2357e6fc67818d4109a4031ec54994 /korean
parentf24d493a022321d07345ac6d9a65afc05d72de0f (diff)
downloadports-c82d9248b0e4473ab24749d294f56e3a571a9dcc.tar.gz
ports-c82d9248b0e4473ab24749d294f56e3a571a9dcc.zip
hunspell: avoid plist substitution
When using PLIST_FILES substitution is not necessary and recommended not to use, the direct use of make(1) variables, works perfectly fine.
Diffstat (limited to 'korean')
-rw-r--r--korean/hunspell/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/korean/hunspell/Makefile b/korean/hunspell/Makefile
index e8ee834d170c..656938e6fd94 100644
--- a/korean/hunspell/Makefile
+++ b/korean/hunspell/Makefile
@@ -23,8 +23,8 @@ NO_ARCH= yes
USES= python:3.3+,build,test shebangfix
SHEBANG_FILES= tests/runtest.py
-PLIST_FILES= %%DATADIR%%/ko_KR.aff \
- %%DATADIR%%/ko_KR.dic
+PLIST_FILES= ${DATADIR}/ko_KR.aff \
+ ${DATADIR}/ko_KR.dic
TEST_TARGET= test
TEST_ENV+= GMAKE=${GMAKE} LC_ALL=en_US.UTF-8