diff options
author | tron <tron@pkgsrc.org> | 2001-01-19 21:16:51 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-01-19 21:16:51 +0000 |
commit | c4b254d4577e2ccfbf268ec65910f52b46988d0d (patch) | |
tree | a7999e4f0bf1df98d1297f8a1610dc7ea69d4b1d | |
parent | 14893359e7faadbaf7437497ee84400aced24e2c (diff) | |
download | pkgsrc-c4b254d4577e2ccfbf268ec65910f52b46988d0d.tar.gz |
Use "nroff -man" on Solaris for the moment so that this package builds
at least.
-rw-r--r-- | pkgtools/pkglint/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 78533c202fc..13b4dba5c33 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.73 2001/01/18 11:40:33 abs Exp $ +# $NetBSD: Makefile,v 1.74 2001/01/19 21:16:51 tron Exp $ # DISTNAME= pkglint-2.34 @@ -23,9 +23,11 @@ MAKE_ENV= PKGSRCDIR=${PKGSRCDIR} .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" -NROFF= gnroff +# This doesn't create readable manual pages. "mandoc" should be added +# to zoularis. +NROFF= nroff -man .else -NROFF= nroff +NROFF= nroff -mandoc .endif do-build: @@ -40,7 +42,7 @@ do-build: -e 's|@PORTSDIR@|${PKGSRCDIR}|g' \ < ${FILESDIR}/${file}.1 \ > ${WRKSRC}/${file}.1 - ${NROFF} -mandoc ${WRKSRC}/${file}.1 >${WRKSRC}/${file}.0 + ${NROFF} ${WRKSRC}/${file}.1 >${WRKSRC}/${file}.0 .endfor do-install: |