diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2013-11-24 17:40:44 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2013-11-24 17:40:44 +0000 |
commit | d77405fd6ddcab0d74954f84af513301be928298 (patch) | |
tree | f9d8301a9f6d3b115d6bf94c75a45e2ab5278877 /deskutils/mirall | |
parent | 4a5323a0ff234534ebccba59d01996ac41ba379d (diff) |
- Wrap up cd && foo in parenthesis, it'd break with bmake -j
- Replace some FIND ... CPIO with COPYTREE_SHARE.
Notes
Notes:
svn path=/head/; revision=334748
Diffstat (limited to 'deskutils/mirall')
-rw-r--r-- | deskutils/mirall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deskutils/mirall/Makefile b/deskutils/mirall/Makefile index 936a6d37ce75..52372873f822 100644 --- a/deskutils/mirall/Makefile +++ b/deskutils/mirall/Makefile @@ -39,7 +39,7 @@ post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${INSTALL_DATA} ${INSTALL_WRKSRC}/doc/latex/ownCloudClientManual.pdf ${STAGEDIR}${DOCSDIR} - cd ${INSTALL_WRKSRC}/doc/html/unthemed ; ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/html + (cd ${INSTALL_WRKSRC}/doc/html/unthemed && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/html) .endif .include <bsd.port.mk> |