diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-08-09 06:36:51 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-08-09 06:39:07 +0000 |
commit | c82d9248b0e4473ab24749d294f56e3a571a9dcc (patch) | |
tree | 48017f963e2357e6fc67818d4109a4031ec54994 /ukrainian | |
parent | f24d493a022321d07345ac6d9a65afc05d72de0f (diff) |
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 'ukrainian')
-rw-r--r-- | ukrainian/hunspell/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ukrainian/hunspell/Makefile b/ukrainian/hunspell/Makefile index 348eccc6d646..e26d69d1e780 100644 --- a/ukrainian/hunspell/Makefile +++ b/ukrainian/hunspell/Makefile @@ -20,8 +20,8 @@ USE_PERL5= build USES= gmake iconv:build shebangfix perl5 tar:tgz SHEBANG_FILES= bin/*.pl -PLIST_FILES= %%DATADIR%%/uk_UA.aff \ - %%DATADIR%%/uk_UA.dic +PLIST_FILES= ${DATADIR}/uk_UA.aff \ + ${DATADIR}/uk_UA.dic post-patch: @${REINPLACE_CMD} -e "s,/bin/true,/usr/bin/true,g" ${WRKSRC}/src/Dictionary/Makefile |