svn commit: r340881 - head/devel/py-pyro

Mathieu Arnold mat at FreeBSD.org
Fri Jan 24 09:04:29 UTC 2014


+--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov <rm at FreeBSD.org>
wrote:
| +	@${MKDIR} ${STAGEDIR}${DOCSDIR}
| +	cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
| +	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
| +	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}

You should try to always enclose cd foo && bar lines with parenthesis, like
this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} .
${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed for
the next lines.

-- 
Mathieu Arnold


More information about the svn-ports-all mailing list