diff options
author | tonio <tonio@pkgsrc.org> | 2006-01-10 13:25:01 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2006-01-10 13:25:01 +0000 |
commit | fbcf8141f89da90756c48454b69ffbf4e2a69daf (patch) | |
tree | 8f821ce6d6f5bca05e9c6356f9e67866ba1aee16 /print/teTeX | |
parent | 501ec392ef7aafc8f37246ab9023954f69b32d3a (diff) | |
download | pkgsrc-fbcf8141f89da90756c48454b69ffbf4e2a69daf.tar.gz |
fix problem with malformed conditional with old make
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 5f7f1bff742..17e6a6202bd 100644 --- a/print/teTeX/module.mk +++ b/print/teTeX/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.9 2006/01/09 10:12:11 tron Exp $ +# $NetBSD: module.mk,v 1.10 2006/01/10 13:25:01 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 @@ -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 defined(TEX_ACCEPTED) && ${TEX_ACCEPTED} == "teTeX1" +.if defined(TEX_ACCEPTED) && (${TEX_ACCEPTED} == "teTeX1") .include "../../print/teTeX1-bin/buildlink3.mk" .else .include "../../mk/tex.buildlink3.mk" |