diff options
author | tron <tron> | 2006-01-09 10:12:11 +0000 |
---|---|---|
committer | tron <tron> | 2006-01-09 10:12:11 +0000 |
commit | 5edec1c8cd9fa8e6e5dda4052b2f11939331bcb0 (patch) | |
tree | 064aa8c937814cf8c51e198fbf4d80d666ebb8d6 /print/teTeX | |
parent | 5b363c8817bd6cb88e2140f5339c6bdad0d196da (diff) | |
download | pkgsrc-5edec1c8cd9fa8e6e5dda4052b2f11939331bcb0.tar.gz |
Fix broken ".if" conditional which causes warnings if e.g. "pkg_chk -i"
was used.
Diffstat (limited to 'print/teTeX')
-rw-r--r-- | print/teTeX/module.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/teTeX/module.mk b/print/teTeX/module.mk index 7dc8d834887..5f7f1bff742 100644 --- a/print/teTeX/module.mk +++ b/print/teTeX/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.8 2006/01/08 14:13:48 tonio Exp $ +# $NetBSD: module.mk,v 1.9 2006/01/09 10:12:11 tron Exp $ # # This Makefile fragment is intended to be included by packages that # install TeX packages. It takes care of rebuilding the ls-R database @@ -34,7 +34,7 @@ PRINT_PLIST_AWK+= /^(@dirrm )?${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}(\ # do not use tex.buildlink3.mk when the only accepted version is teTeX1, to # allow bulk build to create packages -.if ${TEX_ACCEPTED} == "teTeX1" +.if defined(TEX_ACCEPTED) && ${TEX_ACCEPTED} == "teTeX1" .include "../../print/teTeX1-bin/buildlink3.mk" .else .include "../../mk/tex.buildlink3.mk" |