1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Correct syntax error in do-install (&& && -> &&)

This commit is contained in:
Kris Kennaway 2002-09-28 22:03:50 +00:00
parent 3c638559ec
commit 49c1bfdbf5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=67195

View File

@ -25,6 +25,6 @@ do-install:
@${MKDIR} ${PREFIX}/share/java/starlogo
@${INSTALL_SCRIPT} ${WRKSRC}/starlogo-unix ${PREFIX}/bin/starlogo
@(cd ${WRKSRC} && ${TAR} -c -f - .) \
| (cd ${PREFIX}/share/java/starlogo && && ${TAR} --unlink -x -f -)
| (cd ${PREFIX}/share/java/starlogo && ${TAR} --unlink -x -f -)
.include <bsd.port.mk>