diff options
author | jlam <jlam@pkgsrc.org> | 2017-06-07 20:24:27 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2017-06-07 20:24:27 +0000 |
commit | e2fc5448870976db5613e0b7ae06a6b66d217487 (patch) | |
tree | 994b7494cf99165aa5ac90a8bcc5339c28e21909 /mk | |
parent | 85aa4149e4733e0521030fe81d4f12e31782cba3 (diff) | |
download | pkgsrc-e2fc5448870976db5613e0b7ae06a6b66d217487.tar.gz |
Fix the value being substituted for TTMKFDIR in install scripts.
@TYPE1INST@ should be replaced with ${TOOLS_PATH.type1inst}.
Before this change, the sed(1) script being generated was not
replaced @TYPE1INST@ at all, and instead generating a no-op
substitution pattern for TTMKFDIR.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pkgtasks/fonts.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pkgtasks/fonts.mk b/mk/pkgtasks/fonts.mk index c842c54a84e..edb0f6d47f7 100644 --- a/mk/pkgtasks/fonts.mk +++ b/mk/pkgtasks/fonts.mk @@ -1,4 +1,4 @@ -# $NetBSD: fonts.mk,v 1.1 2017/06/01 02:06:04 jlam Exp $ +# $NetBSD: fonts.mk,v 1.2 2017/06/07 20:24:27 jlam Exp $ # # Copyright (c) 2017 The NetBSD Foundation, Inc. # All rights reserved. @@ -77,7 +77,7 @@ USE_TOOLS+= mkfontscale:run FILES_SUBST+= MKFONTSCALE=${TOOLS_PATH.mkfontscale:Q} . else USE_TOOLS+= type1inst:run -FILES_SUBST+= TTMKFDIR=${TOOLS_PATH.type1inst:Q} +FILES_SUBST+= TYPE1INST=${TOOLS_PATH.type1inst:Q} . endif _FONTS_DIRS.x11+= ${FONTS_DIRS.type1} .endif |