svn commit: r513324 - head/french/hunspell

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Sep 30 05:33:48 UTC 2019


Author: sunpoet
Date: Mon Sep 30 05:33:46 2019
New Revision: 513324
URL: https://svnweb.freebsd.org/changeset/ports/513324

Log:
  Avoid using %% in Makefile

Modified:
  head/french/hunspell/Makefile

Modified: head/french/hunspell/Makefile
==============================================================================
--- head/french/hunspell/Makefile	Mon Sep 30 05:33:42 2019	(r513323)
+++ head/french/hunspell/Makefile	Mon Sep 30 05:33:46 2019	(r513324)
@@ -18,13 +18,13 @@ NO_ARCH=	yes
 NO_BUILD=	yes
 NO_WRKSUBDIR=	yes
 
-PLIST_FILES=	%%DATADIR%%/fr_FR.aff \
-		%%DATADIR%%/fr_FR.dic
+PLIST_FILES=	${DATADIR}/fr_FR.aff \
+		${DATADIR}/fr_FR.dic
 
 FRALIASES=	fr_BE fr_CA fr_CH fr_LU
 .for ALIAS in ${FRALIASES}
-PLIST_FILES+=	%%DATADIR%%/${ALIAS}.aff \
-		%%DATADIR%%/${ALIAS}.dic
+PLIST_FILES+=	${DATADIR}/${ALIAS}.aff \
+		${DATADIR}/${ALIAS}.dic
 .endfor
 
 do-install:


More information about the svn-ports-head mailing list