Date: Mon, 30 Sep 2019 05:33:47 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513324 - head/french/hunspell Message-ID: <201909300533.x8U5Xl1V043332@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909300533.x8U5Xl1V043332>