diff options
author | minskim <minskim> | 2006-04-12 17:58:41 +0000 |
---|---|---|
committer | minskim <minskim> | 2006-04-12 17:58:41 +0000 |
commit | cb79af8b058f960acf11112b7953c6c444251055 (patch) | |
tree | 2b04c26459977031a89bbfe94c111f4d78862347 /print/teTeX/module.mk | |
parent | 5f089a52a9b3b5515383c91224b5484fee6ef5ca (diff) | |
download | pkgsrc-cb79af8b058f960acf11112b7953c6c444251055.tar.gz |
Fix PRINT_PLIST_AWK patterns to use "${PKG_LOCALTEXMFPREFIX}" instead of
its value. Noted by reed@.
Diffstat (limited to 'print/teTeX/module.mk')
-rw-r--r-- | print/teTeX/module.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print/teTeX/module.mk b/print/teTeX/module.mk index 9d0710ed087..5207de583ea 100644 --- a/print/teTeX/module.mk +++ b/print/teTeX/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.13 2006/04/06 06:22:37 reed Exp $ +# $NetBSD: module.mk,v 1.14 2006/04/12 17:58:41 minskim Exp $ # # This Makefile fragment is intended to be included by packages that # install TeX packages. It takes care of rebuilding the ls-R database @@ -31,6 +31,8 @@ DEINSTALL_TEMPLATE+= ../../print/teTeX/files/texmf.tmpl PRINT_PLIST_AWK+= /^(@dirrm )?${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}(\/ls-R)?$$/ \ { next; } +PRINT_PLIST_AWK+= /^(@dirrm )?${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}/ \ + { gsub(/${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}/, "$${PKG_LOCALTEXMFPREFIX}"); } # do not use tex.buildlink3.mk when the only accepted version is teTeX1 or teTeX2, to # allow bulk build to create packages |