diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-11-03 06:45:14 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-11-03 06:45:14 +0800 |
commit | d26ef18700dca59c35dc940097bf7b3db1369965 (patch) | |
tree | adf234bd1f2e56ae130e9960e1467b64c9fa0ed6 /biology/ncbi-toolkit | |
parent | 23211342637a054575d9dc1935d00c038cb6545f (diff) | |
download | freebsd-ports-gnome-d26ef18700dca59c35dc940097bf7b3db1369965.tar.gz freebsd-ports-gnome-d26ef18700dca59c35dc940097bf7b3db1369965.tar.zst freebsd-ports-gnome-d26ef18700dca59c35dc940097bf7b3db1369965.zip |
Cleanup no longer needed CHMOD usage after r424898.
PR: 213743
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'biology/ncbi-toolkit')
-rw-r--r-- | biology/ncbi-toolkit/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/biology/ncbi-toolkit/Makefile b/biology/ncbi-toolkit/Makefile index 4a8d980ab494..21b24c6a71b6 100644 --- a/biology/ncbi-toolkit/Makefile +++ b/biology/ncbi-toolkit/Makefile @@ -99,9 +99,7 @@ do-install: do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC}/doc && ${TAR} --exclude man -cf - .) | \ - (cd ${STAGEDIR}${DOCSDIR} && ${TAR} --unlink -xf -) - @${FIND} ${STAGEDIR}${DOCSDIR} -type d | ${XARGS} ${CHMOD} a+rx - @${FIND} ${STAGEDIR}${DOCSDIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} + @(cd ${WRKSRC}/doc && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} '-not ( -name man -o -path ./man\/* )') .include <bsd.port.mk> |