diff options
-rw-r--r-- | print/teTeX/module.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/print/teTeX/module.mk b/print/teTeX/module.mk index e3514c2f02d..7dc8d834887 100644 --- a/print/teTeX/module.mk +++ b/print/teTeX/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.7 2005/12/29 06:22:07 jlam Exp $ +# $NetBSD: module.mk,v 1.8 2006/01/08 14:13:48 tonio Exp $ # # This Makefile fragment is intended to be included by packages that # install TeX packages. It takes care of rebuilding the ls-R database @@ -32,6 +32,12 @@ DEINSTALL_EXTRA_TMPL+= ../../print/teTeX/files/texmf.tmpl PRINT_PLIST_AWK+= /^(@dirrm )?${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}(\/ls-R)?$$/ \ { next; } +# do not use tex.buildlink3.mk when the only accepted version is teTeX1, to +# allow bulk build to create packages +.if ${TEX_ACCEPTED} == "teTeX1" +.include "../../print/teTeX1-bin/buildlink3.mk" +.else .include "../../mk/tex.buildlink3.mk" +.endif .endif # TEX_PACKAGE_MK |