diff options
author | Vidar Karlsen <vidar@karlsen.tech> | 2022-12-29 11:03:17 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2022-12-29 14:34:40 +0000 |
commit | 1f20fb8b8b340e72c66431cc9b9737da121c531e (patch) | |
tree | 2b2e64a732e8ccb183975911879ff0f29da57842 | |
parent | eaa988bfc7a879f1c1f386111501eabcc097029f (diff) |
textproc/crunch: fix PLIST_FILES issue
> FATAL: PLIST_FILES: files cannot contain %%FOO%% variables.
> Use make variables and logic instead
PR: 268639
-rw-r--r-- | textproc/crunch/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/crunch/Makefile b/textproc/crunch/Makefile index 7c90ec4d189a..ac2982c2fe1d 100644 --- a/textproc/crunch/Makefile +++ b/textproc/crunch/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake tar:tgz -PLIST_FILES= bin/crunch man/man1/crunch.1.gz %%DATADIR%%/charset.lst +PLIST_FILES= bin/crunch man/man1/crunch.1.gz ${DATADIR}/charset.lst do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin |