svn commit: r513323 - head/german/mythes

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


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

Log:
  Avoid using %% in Makefile

Modified:
  head/german/mythes/Makefile

Modified: head/german/mythes/Makefile
==============================================================================
--- head/german/mythes/Makefile	Mon Sep 30 05:19:05 2019	(r513322)
+++ head/german/mythes/Makefile	Mon Sep 30 05:33:42 2019	(r513323)
@@ -17,14 +17,14 @@ NO_ARCH=	yes
 NO_BUILD=	yes
 NO_WRKSUBDIR=	yes
 
-PLIST_FILES=	%%DATADIR%%/th_de_DE_v2.idx \
-		%%DATADIR%%/th_de_DE_v2.dat
+PLIST_FILES=	${DATADIR}/th_de_DE_v2.idx \
+		${DATADIR}/th_de_DE_v2.dat
 
 DEALIASES=	de_AT de_BE de_CH de_LI de_LU
 
 .for ALIAS in ${DEALIASES}
-PLIST_FILES+=	%%DATADIR%%/th_${ALIAS}_v2.idx \
-		%%DATADIR%%/th_${ALIAS}_v2.dat
+PLIST_FILES+=	${DATADIR}/th_${ALIAS}_v2.idx \
+		${DATADIR}/th_${ALIAS}_v2.dat
 .endfor
 
 do-install:


More information about the svn-ports-head mailing list