diff options
author | christos <christos@pkgsrc.org> | 2005-05-14 19:16:16 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 2005-05-14 19:16:16 +0000 |
commit | f13a66ee5d5dd98ab5a0eb3876f2301be0e4ea88 (patch) | |
tree | bba71f348293465ce7ae9389a6fd516809e10746 /bootstrap | |
parent | d133461b390bd439021890e3713cf9ec80ff081a (diff) | |
download | pkgsrc-f13a66ee5d5dd98ab5a0eb3876f2301be0e4ea88.tar.gz |
Different operating systems have different places where they store the
groff macro files. Since we don't have a pkgsrc groff tool dependency,
we ignore the dependencies if the macro files are not there.
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/bmake/mk/bsd.man.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap/bmake/mk/bsd.man.mk b/bootstrap/bmake/mk/bsd.man.mk index 899e46ab7ff..9cad27a8162 100644 --- a/bootstrap/bmake/mk/bsd.man.mk +++ b/bootstrap/bmake/mk/bsd.man.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.man.mk,v 1.1.1.1 2004/03/11 13:04:17 grant Exp $ +# $NetBSD: bsd.man.mk,v 1.2 2005/05/14 19:16:16 christos Exp $ # @(#)bsd.man.mk 8.1 (Berkeley) 6/8/93 .if !target(__initialized__) @@ -20,8 +20,10 @@ cleandir: cleanman TMACDIR?= ${DESTDIR}/usr/share/groff/tmac HTMLDIR?= ${DESTDIR}/usr/share/man +if exists(${TMACDIR}/tmac.andoc) && exists(${TMACDIR}/tmac.doc) CATDEPS?= ${TMACDIR}/tmac.andoc \ ${TMACDIR}/tmac.doc +.endif MANTARGET?= cat NROFF?= nroff -Tascii GROFF?= groff -Tascii |