1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00

Fix installation of ERL_DOCS directories.

This commit is contained in:
Jimmy Olgeni 2015-07-10 11:31:40 +00:00
parent 323ea1cb54
commit 144995b4cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=391699

2
Mk/Uses/erlang.mk vendored
View File

@ -129,7 +129,7 @@ do-install-erlang:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${ERL_DOCS}
if [ -d "${WRKSRC}/${file}" ]; then \
cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DOCSDIR}; \
cd ${WRKSRC} && ${COPYTREE_SHARE} ${file} ${STAGEDIR}${DOCSDIR}; \
else \
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}; \
fi