diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-25 08:44:50 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-25 08:44:50 +0000 |
commit | a5929c64e866ad95caf6f208a2a36495d5c53e47 (patch) | |
tree | 92b6a75c26fb4399141fca722e4309fd9d550c88 | |
parent | 114b854ce81f4824e2b7dec244e518d8aed7bdce (diff) | |
download | freebsd-ports-a5929c64e866ad95caf6f208a2a36495d5c53e47.zip |
Install man pages regardless of whether NOPORTDOCS is defined.
-rw-r--r-- | devel/bin86/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/devel/bin86/Makefile b/devel/bin86/Makefile index c4bced154cb7..afb993c768a8 100644 --- a/devel/bin86/Makefile +++ b/devel/bin86/Makefile @@ -14,9 +14,7 @@ MAINTAINER= trevor@FreeBSD.org DOCS= ChangeLog README README-0.4 DOCDIR= share/doc/${PORTNAME} -.if !defined(NOPORTDOCS) -MAN1= as86.1 ld86.1 -.endif +MAN1= as86.1 ld86.1 ONLY_FOR_ARCHS= i386 PLIST= ${WRKDIR}/pkg-plist WRKSRC= ${WRKDIR}/${PORTNAME} @@ -37,6 +35,7 @@ pre-install: .endif do-install: + ${INSTALL_MAN} ${WRKSRC}/man/*1 ${PREFIX}/man/man1 ${INSTALL_PROGRAM} `find ${WRKSRC} -type f -perm 755 |grep -v encap` \ ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/as/as86_encap ${PREFIX}/bin @@ -44,7 +43,6 @@ do-install: ${MKDIR} ${PREFIX}/${DOCDIR} .for i in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR} - ${INSTALL_MAN} ${WRKSRC}/man/*1 ${PREFIX}/man/man1 .endfor .endif |