diff options
author | wjv <wjv@FreeBSD.org> | 2001-07-03 09:08:26 +0000 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2001-07-03 09:08:26 +0000 |
commit | d1975b5f6c2ee6969bc3c6f3ce1f7144ff5615f3 (patch) | |
tree | f166f0c17fb609eaf8721a46657f99c5d221162a /biology | |
parent | aba428542fb7b0997a2b53deb8811d5a00683628 (diff) | |
download | FreeBSD-ports-d1975b5f6c2ee6969bc3c6f3ce1f7144ff5615f3.zip FreeBSD-ports-d1975b5f6c2ee6969bc3c6f3ce1f7144ff5615f3.tar.gz |
Replace erroneous usage of INSTALL_MAN with INSTALL_DATA.
PR: 28666
Submitted by: Patrick Li <pat@databits.net>
Diffstat (limited to 'biology')
-rw-r--r-- | biology/fasta/Makefile | 2 | ||||
-rw-r--r-- | biology/fasta3/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/biology/fasta/Makefile b/biology/fasta/Makefile index 4bd56b4..cc5e408 100644 --- a/biology/fasta/Makefile +++ b/biology/fasta/Makefile @@ -40,7 +40,7 @@ post-install: .if !defined(NOPORTDOCS) @ ${MKDIR} ${FASTA_DOCDIR} .for docfile in ${FASTA_DOCS} - @ ${INSTALL_MAN} ${WRKSRC}/${docfile} ${FASTA_DOCDIR} + @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${FASTA_DOCDIR} .endfor .endif diff --git a/biology/fasta3/Makefile b/biology/fasta3/Makefile index a7d91cd..3c0523f 100644 --- a/biology/fasta3/Makefile +++ b/biology/fasta3/Makefile @@ -41,7 +41,7 @@ post-install: .if !defined(NOPORTDOCS) @ ${MKDIR} ${FASTA3_DOCDIR} .for docfile in ${FASTA3_DOCS} - @ ${INSTALL_MAN} ${WRKSRC}/${docfile} ${FASTA3_DOCDIR} + @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${FASTA3_DOCDIR} .endfor .endif .if !defined(BATCH) |