diff options
author | marino <marino@FreeBSD.org> | 2016-01-17 20:53:59 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-17 20:53:59 +0800 |
commit | f5dcba91966afd67c1740742160452b68c5ae83e (patch) | |
tree | c427ea4ec0c2348e21985e6835485ce039f9669e /vietnamese | |
parent | 968aefe9c4aa401e55688ecbc7a61c34d0766423 (diff) | |
download | freebsd-ports-graphics-f5dcba91966afd67c1740742160452b68c5ae83e.tar.gz freebsd-ports-graphics-f5dcba91966afd67c1740742160452b68c5ae83e.tar.zst freebsd-ports-graphics-f5dcba91966afd67c1740742160452b68c5ae83e.zip |
vietnames/vietunicode-*: Unbreak index
Now I see why <pre>/<post> was used. It was a hack to work around using
${PORTSDIR} instead of ${.CURDIR} in the include statement.
Convert to .CURDIR to unbreak index (hopefully)
Diffstat (limited to 'vietnamese')
-rw-r--r-- | vietnamese/vietunicode-hannom/Makefile | 2 | ||||
-rw-r--r-- | vietnamese/vietunicode-trichlor/Makefile | 2 | ||||
-rw-r--r-- | vietnamese/vietunicode-web1/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/vietnamese/vietunicode-hannom/Makefile b/vietnamese/vietunicode-hannom/Makefile index b22514f8026..578c019b317 100644 --- a/vietnamese/vietunicode-hannom/Makefile +++ b/vietnamese/vietunicode-hannom/Makefile @@ -26,5 +26,5 @@ do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${TTF} ${STAGEDIR}${FONTSDIR}) -.include "${PORTSDIR}/chinese/ttfm/Makefile.ttf" +.include "${.CURDIR}/../../chinese/ttfm/Makefile.ttf" .include <bsd.port.mk> diff --git a/vietnamese/vietunicode-trichlor/Makefile b/vietnamese/vietunicode-trichlor/Makefile index 182aca4d620..d1487addba2 100644 --- a/vietnamese/vietunicode-trichlor/Makefile +++ b/vietnamese/vietunicode-trichlor/Makefile @@ -34,5 +34,5 @@ do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${TTF} ${STAGEDIR}${FONTSDIR}) -.include "${PORTSDIR}/chinese/ttfm/Makefile.ttf" +.include "${.CURDIR}/../../chinese/ttfm/Makefile.ttf" .include <bsd.port.mk> diff --git a/vietnamese/vietunicode-web1/Makefile b/vietnamese/vietunicode-web1/Makefile index a459c9149b5..e2e20804441 100644 --- a/vietnamese/vietunicode-web1/Makefile +++ b/vietnamese/vietunicode-web1/Makefile @@ -23,5 +23,5 @@ do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${TTF} ${STAGEDIR}${FONTSDIR}) -.include "${PORTSDIR}/chinese/ttfm/Makefile.ttf" +.include "${.CURDIR}/../../chinese/ttfm/Makefile.ttf" .include <bsd.port.mk> |